From 377fdc571d8c6f4b07b75f9fb371f8bd17fe9bd7 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Thu, 18 Dec 2025 11:09:32 +0100 Subject: [PATCH] fix: enable helm plugin Signed-off-by: Lander Van den Bulcke --- plugins/lang/helm.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/plugins/lang/helm.nix b/plugins/lang/helm.nix index d8918ba..8b20185 100644 --- a/plugins/lang/helm.nix +++ b/plugins/lang/helm.nix @@ -1,6 +1,16 @@ { lib, pkgs, ... }: { + autoCmd = [ + { + event = "FileType"; + pattern = "helm"; + command = "LspRestart"; + } + ]; + plugins = { + helm.enable = true; + lsp.servers.helm_ls = { enable = true; };