From 0abad9374dd07c7984dc83782703c6a13b8340e6 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Thu, 18 Dec 2025 10:25:22 +0100 Subject: [PATCH] feat: add helm lsp support Signed-off-by: Lander Van den Bulcke --- plugins/lang/helm.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 plugins/lang/helm.nix diff --git a/plugins/lang/helm.nix b/plugins/lang/helm.nix new file mode 100644 index 0000000..d8918ba --- /dev/null +++ b/plugins/lang/helm.nix @@ -0,0 +1,8 @@ +{ lib, pkgs, ... }: +{ + plugins = { + lsp.servers.helm_ls = { + enable = true; + }; + }; +}