kickstart.nvim/lua/kickstart/plugins/vim_helm.lua

12 lines
234 B
Lua

---@type LazySpec
return {
{
'towolf/vim-helm',
event = 'BufReadPre',
config = function()
-- This plugin automatically detects helm files (including .tpl)
-- and sets the filetype to "helm" instead of "yaml"
end,
},
}