plugins/lsp: enable auto-installing rustc and cargo

This commit is contained in:
Gaetan Lepage 2023-11-23 13:53:22 +01:00 committed by Gaétan Lepage
parent c68f2d6270
commit 0b1984ed81
4 changed files with 102 additions and 4 deletions

View file

@ -43,7 +43,11 @@
installLanguageServer = false;
};
nil_ls.enable = true;
rust-analyzer.enable = true;
rust-analyzer = {
enable = true;
installCargo = true;
installRustc = true;
};
ruff-lsp = {
enable = true;
extraOptions = {
@ -112,7 +116,11 @@
pyright.enable = true;
rnix-lsp.enable = true;
ruff-lsp.enable = true;
rust-analyzer.enable = true;
rust-analyzer = {
enable = true;
installCargo = true;
installRustc = true;
};
sourcekit.enable = true;
svelte.enable = true;
tailwindcss.enable = true;