Skip to content

Commit

Permalink
languages(clang): fix ccls opts
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanisaacs committed Oct 12, 2023
1 parent d9cb1ae commit 84d4015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/languages/clang.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ with builtins; let
capabilities = capabilities;
on_attach=default_on_attach;
cmd = {"${nvim.languages.commandOptToCmd cfg.lsp.package "ccls"}"};
${optionalString (cfg.lsp.opts != null) "init_options = ${cfg.lsp.cclsOpts}"}
${optionalString (cfg.lsp.opts != null) "init_options = ${cfg.lsp.opts}"}
}
'';
};
Expand Down

0 comments on commit 84d4015

Please sign in to comment.