Fix clangd path, hopefully? nixpkgs problem messed me up

This commit is contained in:
Artemis Tosini 2021-07-07 04:30:51 +00:00
parent 0ea068058e
commit 494e7d116b
Signed by: artemist
GPG key ID: ADFFE553DCBB831E

View file

@ -37,7 +37,7 @@
xdg.configFile."nvim/coc-settings.json".text = builtins.toJSON {
rust-analyzer.serverPath = "${pkgs.rust-analyzer}/bin/rust-analyzer";
clangd = {
path = "${pkgs.llvmPackages_latest.clang-unwrapped}/bin/clangd";
path = "${pkgs.clang-tools}/bin/clangd";
semanticHighlighting = true;
};
languageserver.nix = {