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; +}