try helm integration
This commit is contained in:
@ -209,6 +209,16 @@ return {
|
||||
prismals = {},
|
||||
gopls = {},
|
||||
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 = {
|
||||
vim.api.nvim_create_autocmd("BufWritePre", {
|
||||
callback = function()
|
||||
|
Reference in New Issue
Block a user