nixos-config/home/afoucaultc/packages/neovim/plugins/lsp.nix
2026-08-20 13:20:05 +02:00

19 lines
356 B
Nix

{ ... }:
{
programs.nixvim = {
plugins = {
lsp = {
enable = true;
servers = {
nil_ls.enable = true;
lua_ls = {
enable = true;
settings.Lua.diagnostics.globals = [ "vim" ];
};
texlab.enable = true;
pyright.enable = true;
};
};
};
};
}