from-scratch rewrite #1

Merged
kenobi merged 54 commits from from-scratch into master 2025-06-26 08:53:34 +02:00
47 changed files with 1391 additions and 735 deletions
Showing only changes of commit c6c8c6f5c3 - Show all commits

View File

@ -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()

View File

@ -0,0 +1,3 @@
return {
'towolf/vim-helm'
}