mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 03:20:08 +02:00
plugins/lsp: enable auto-installing rustc and cargo
This commit is contained in:
parent
c68f2d6270
commit
0b1984ed81
4 changed files with 102 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue