vim-helm
is a syntax plugin for helm templates (yaml + gotmpl + sprig + custom).
It also adds helm compiler, letting you populate quickfix window with results
of helm lint
command.
Using Vundle
Plugin 'sbulav/vim-helm'
Using vim-plug
Plug 'sbulav/vim-helm'
While editing any of the {Chart.yaml, values.yaml, templates/*.yaml} you should be able to run
:make
which will populate your quickfix with results of helm lint
and will focus on first
error.
To make it more convenient, you can use mapping, e.g.
" Simply run a make command
nnoremap <leader>m :make<cr>