From cb6de13cc75098ec657f22e75d733c20e1ff71bd Mon Sep 17 00:00:00 2001 From: alejandro-angulo Date: Thu, 20 Mar 2025 16:22:06 -0700 Subject: [PATCH] Added helm-ls --- config/default.nix | 1 + config/plugins/helm.nix | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 config/plugins/helm.nix diff --git a/config/default.nix b/config/default.nix index 07ca26e..5e5cdca 100644 --- a/config/default.nix +++ b/config/default.nix @@ -5,6 +5,7 @@ imports = [ ./plugins/cmp.nix ./plugins/gitsigns.nix + ./plugins/helm.nix ./plugins/lazygit.nix ./plugins/lsp.nix ./plugins/lualine.nix diff --git a/config/plugins/helm.nix b/config/plugins/helm.nix new file mode 100644 index 0000000..b6c2d98 --- /dev/null +++ b/config/plugins/helm.nix @@ -0,0 +1,14 @@ +{ ... }: +{ + # Workaround for helm-ls not working correctly + # See here: https://github.com/nix-community/nixvim/issues/989#issuecomment-2333728503 + autoCmd = [ + { + event = "FileType"; + pattern = "helm"; + command = "LspRestart"; + } + ]; + + plugins.helm.enable = true; +}