Files
LazyVim-mirror/lua/lazyvim/plugins/extras/lang/helm.lua
snailed 4d0d87f626 fix(helm): broken helm highlighting (#5335)
## Description

This PR replaces the towolf/vim-helm plugin with a newer, lua
implementation of the plugin. This fixes syntax highlighting and makes
the workaround for the ftdetect/lsp load order superfluous.

## Related Issue(s)

  - Fixes #5334 

## Checklist

- [X] I've read the
[CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md)
guidelines.
2025-10-20 11:09:29 +02:00

25 lines
381 B
Lua

return {
recommended = function()
return LazyVim.extras.wants({
ft = "helm",
root = "Chart.yaml",
})
end,
{ "qvalentin/helm-ls.nvim", ft = "helm" },
{
"nvim-treesitter/nvim-treesitter",
opts = { ensure_installed = { "helm" } },
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
helm_ls = {},
},
},
},
}