Initial commit

This commit is contained in:
Alejandro Angulo 2024-05-31 23:32:58 -07:00
commit d75b5a0be6
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
8 changed files with 567 additions and 0 deletions

25
config/plugins/lsp.nix Normal file
View 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;
};
};
}