feat: add markdown linting/formatting

This commit is contained in:
Devin Haska 2025-05-27 11:54:47 -07:00
parent 577d622e12
commit bdac71b19c
3 changed files with 16 additions and 2 deletions

View file

@ -1,4 +1,4 @@
return {
return { {
"mfussenegger/nvim-lint",
opts = {
events = { "BufWritePost", "BufReadPost", "InsertLeave" },
@ -23,4 +23,16 @@ return {
end,
})
end,
}
}, {
"jose-elias-alvarez/null-ls.nvim",
event = { "BufWritePost", "BufReadPost", "InsertLeave" },
opts = function()
local null_ls = require("null-ls")
local diagnostics = null_ls.builtins.diagnostics
return {
sources = {
diagnostics.vale,
}
}
end
} }