try helm integration
This commit is contained in:
@ -209,6 +209,16 @@ return {
|
|||||||
prismals = {},
|
prismals = {},
|
||||||
gopls = {},
|
gopls = {},
|
||||||
jsonls = {},
|
jsonls = {},
|
||||||
|
helm_ls = {},
|
||||||
|
yamlls = function()
|
||||||
|
vim.lsp.on_attach(function(client, buffer)
|
||||||
|
if vim.bo[buffer].filetype == "helm" then
|
||||||
|
vim.schedule(function()
|
||||||
|
vim.cmd("LspStop ++force yamlls")
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end,
|
||||||
eslint = {
|
eslint = {
|
||||||
vim.api.nvim_create_autocmd("BufWritePre", {
|
vim.api.nvim_create_autocmd("BufWritePre", {
|
||||||
callback = function()
|
callback = function()
|
||||||
|
3
nvim/lua/plugins/vim-helm.lua
Normal file
3
nvim/lua/plugins/vim-helm.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
return {
|
||||||
|
'towolf/vim-helm'
|
||||||
|
}
|
Reference in New Issue
Block a user