Added helm-ls

This commit is contained in:
alejandro-angulo 2025-03-20 16:22:06 -07:00
parent 4df98a2d38
commit cb6de13cc7
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
2 changed files with 15 additions and 0 deletions

View file

@ -5,6 +5,7 @@
imports = [
./plugins/cmp.nix
./plugins/gitsigns.nix
./plugins/helm.nix
./plugins/lazygit.nix
./plugins/lsp.nix
./plugins/lualine.nix

14
config/plugins/helm.nix Normal file
View file

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