Neovim helm users question
I currently have the following installed via lazy:
-- formatting helm charts properly
{
'towolf/vim-helm',
ft = {'helm'},
enabled = true,
},
{
"qvalentin/helm-ls.nvim",
ft = "helm",
opts = {
conceal_templates = {
-- enable the replacement of templates with virtual text of their current values
-- note: for better wrapping support, set `vim.opt.conceallevel = 2`
enabled = false,
},
},
},
I also have tree-sitter installed and I've already done a :TSInstall helm, but for some reason, it's not highlighting my .Values.parameters quite right. See in the screenshot below how it doesn't give me highlights for the period or the word Values.
When I do an :Inspect on the Values, it says:
Syntax
- gotplAction
but that can't be right
What do you think I could be doing wrong?











🛠️