Files
nixos-config/modules/home/neovim/plugins/lsp.nix
Christoph Schmatzler 298bbfae53 tabs
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-11-02 11:36:27 +00:00

16 lines
243 B
Nix

{
programs.nixvim.plugins = {
lsp = {
enable = true;
inlayHints = true;
servers = {
nil_ls.enable = true;
cssls.enable = true;
dockerls.enable = true;
yamlls.enable = true;
vtsls.enable = true;
};
};
};
}