Added helm-ls
This commit is contained in:
parent
4df98a2d38
commit
cb6de13cc7
|
@ -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
14
config/plugins/helm.nix
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue