Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
18 lines
236 B
Nix
18 lines
236 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
autoCmd = [
|
|
{
|
|
event = "FileType";
|
|
pattern = "helm";
|
|
command = "LspRestart";
|
|
}
|
|
];
|
|
|
|
plugins = {
|
|
helm.enable = true;
|
|
|
|
lsp.servers.helm_ls = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|