diff options
author | Soispha <soispha@vhack.eu> | 2023-11-25 12:57:26 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-11-25 12:57:26 +0100 |
commit | ddf0a22bfd8b16a60de90ecf6086531110c8a207 (patch) | |
tree | e0bd7ac4625d764eed7a135671508bcd3da5237d /hm/soispha/conf/nvim/plgs | |
parent | build(flake): Update (diff) | |
download | nixos-config-ddf0a22bfd8b16a60de90ecf6086531110c8a207.zip |
fix(hm/conf/nvim/lsp/rust-analyzer): Don't install rustc and cargo
Diffstat (limited to 'hm/soispha/conf/nvim/plgs')
-rw-r--r-- | hm/soispha/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hm/soispha/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix b/hm/soispha/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix index 943a8c80..d58c8f1b 100644 --- a/hm/soispha/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix +++ b/hm/soispha/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix @@ -5,6 +5,10 @@ settings = { typing.autoClosingAngleBrackets.enable = true; }; + # NOTE: These should be provided by the devenv, to support nightly and + # such things <2023-11-25> + installCargo = false; + installRustc = false; }; }; } |