nix-community.nixvim/plugins/by-name/helm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
597 B
Nix
Raw Normal View History

2024-02-02 11:39:02 +01:00
{
lib,
helpers,
...
}:
2024-12-22 09:58:27 +00:00
lib.nixvim.plugins.mkVimPlugin {
2024-11-07 10:50:39 +01:00
name = "helm";
packPathName = "vim-helm";
2024-11-07 10:50:39 +01:00
package = "vim-helm";
2024-02-02 11:39:02 +01:00
description = ''
To ensure that `helm_ls` (and not `yamlls`) is used on helm files, add the following autocmd:
```nix
autoCmd = [
{
event = "FileType";
pattern = "helm";
command = "LspRestart";
}
];
```
See [nix-community/nixvim#989](https://github.com/nix-community/nixvim/issues/989#issuecomment-2333728503)
for details.
'';
2024-11-07 10:50:39 +01:00
maintainers = [ lib.maintainers.GaetanLepage ];
2024-02-02 11:39:02 +01:00
}