about summary refs log tree commit diff stats
path: root/hm/soispha/conf/nvim/plgs
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-11-25 12:57:26 +0100
committerSoispha <soispha@vhack.eu>2023-11-25 12:57:26 +0100
commitddf0a22bfd8b16a60de90ecf6086531110c8a207 (patch)
treee0bd7ac4625d764eed7a135671508bcd3da5237d /hm/soispha/conf/nvim/plgs
parentbuild(flake): Update (diff)
downloadnixos-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.nix4
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;
     };
   };
 }