mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 11:01:15 +00:00
Merge pull request #86 from horriblename/fix-clangd-offset-encoding
fix(clangd): use same offsetEncoding as null-ls
This commit is contained in:
commit
efe5905c41
1 changed files with 4 additions and 1 deletions
|
@ -24,8 +24,11 @@ with builtins; let
|
|||
clangd = {
|
||||
package = pkgs.clang-tools;
|
||||
lspConfig = ''
|
||||
local clangd_cap = capabilities
|
||||
-- use same offsetEncoding as null-ls
|
||||
clangd_cap.offsetEncoding = {"utf-16"}
|
||||
lspconfig.clangd.setup{
|
||||
capabilities = capabilities;
|
||||
capabilities = clangd_cap;
|
||||
on_attach=default_on_attach;
|
||||
cmd = {"${cfg.lsp.package}/bin/clangd"};
|
||||
${optionalString (cfg.lsp.opts != null) "init_options = ${cfg.lsp.opts}"}
|
||||
|
|
Loading…
Reference in a new issue