Files
nixos-config/modules/home/neovim/plugins/lsp.nix
Christoph Schmatzler 68354d7b42 elixirls is a liability
Signed-off-by: Christoph Schmatzler <christoph@tuist.dev>
2025-08-18 09:23:07 +02:00

16 lines
323 B
Nix

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