snowflake/home/programs/editors/neovim/plugins/lsp/lsp.nix

34 lines
582 B
Nix
Raw Normal View History

2024-10-28 19:30:48 -04:00
_: {
programs.nixvim.plugins = {
lsp-format.enable = true;
lsp-lines.enable = true;
lint = {
lintersByFt = {
nix = [
"statix"
];
};
linters = {
statix = {
cmd = ["statix"];
};
};
};
lsp = {
enable = true;
inlayHints = true;
servers = {
nil_ls = {
enable = true;
};
rust_analyzer = {
enable = true;
autostart = true;
installCargo = true;
installRustc = true;
};
};
};
};
}