Files
nixos-config/modules/home/neovim/plugins/lsp.nix
Christoph Schmatzler c5f2af61a6 qup
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-09-02 12:59:18 +00:00

17 lines
356 B
Nix

{
programs.nixvim.plugins = {
lsp = {
enable = true;
inlayHints = true;
servers = {
nil_ls.enable = true; # Nix
ts_ls.enable = true; # TS/JS
volar.enable = true; # Vue
cssls.enable = true; # CSS
dockerls.enable = true; # Docker
elixirls.enable = true; # Elixir
};
};
};
}