exp: Testing out yaml-companion plugin, moving nvim-lint to being on a

hotkey rather than on bufread and bufwrite
This commit is contained in:
2026-04-21 09:05:45 -05:00
parent 1d6b711561
commit 5426461dea
5 changed files with 45 additions and 15 deletions

View File

@@ -0,0 +1,8 @@
return {
'mosheavni/yaml-companion.nvim',
config = function(_, opts)
local cfg = require('yaml-companion').setup(opts)
vim.lsp.config('yamlls', cfg)
vim.lsp.enable('yamlls')
end,
}