Initial commit
This commit is contained in:
commit
d75b5a0be6
8 changed files with 567 additions and 0 deletions
25
config/plugins/lsp.nix
Normal file
25
config/plugins/lsp.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
plugins.lsp = {
|
||||
enable = true;
|
||||
servers = {
|
||||
# python
|
||||
ruff.enable = true;
|
||||
|
||||
# lua (nvim config)
|
||||
lua-ls.enable = true;
|
||||
|
||||
# rust
|
||||
rust-analyzer = {
|
||||
enable = true;
|
||||
installCargo = true;
|
||||
installRustc = true;
|
||||
};
|
||||
|
||||
# ocaml
|
||||
ocamllsp.enable = true;
|
||||
|
||||
# nix
|
||||
nixd.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue