From a6ffcf2277b1593dba93763c24eabf6c9358dafa Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 5 Oct 2023 07:23:27 -0700 Subject: [PATCH] trying another way to fix multiple client offset error --- .config/nvim/after/plugin/lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/after/plugin/lsp.lua b/.config/nvim/after/plugin/lsp.lua index 77b0eb4..a872222 100644 --- a/.config/nvim/after/plugin/lsp.lua +++ b/.config/nvim/after/plugin/lsp.lua @@ -9,7 +9,7 @@ lsp.ensure_installed({ -- set client offset encoding for clang lsp.configure('clangd', { init_options = { - offsetEncoding = { "utf-8", "utf-16" } + offsetEncoding = { "utf-8" } } })