mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +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 = {
|
clangd = {
|
||||||
package = pkgs.clang-tools;
|
package = pkgs.clang-tools;
|
||||||
lspConfig = ''
|
lspConfig = ''
|
||||||
|
local clangd_cap = capabilities
|
||||||
|
-- use same offsetEncoding as null-ls
|
||||||
|
clangd_cap.offsetEncoding = {"utf-16"}
|
||||||
lspconfig.clangd.setup{
|
lspconfig.clangd.setup{
|
||||||
capabilities = capabilities;
|
capabilities = clangd_cap;
|
||||||
on_attach=default_on_attach;
|
on_attach=default_on_attach;
|
||||||
cmd = {"${cfg.lsp.package}/bin/clangd"};
|
cmd = {"${cfg.lsp.package}/bin/clangd"};
|
||||||
${optionalString (cfg.lsp.opts != null) "init_options = ${cfg.lsp.opts}"}
|
${optionalString (cfg.lsp.opts != null) "init_options = ${cfg.lsp.opts}"}
|
||||||
|
|
Loading…
Reference in a new issue