revert: 78640d2 'refactor(nvim): remove nvim-lint'

This commit is contained in:
Price Hiller 2023-12-19 01:33:35 -06:00
parent b88575d180
commit 17830b7c0d
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -0,0 +1,16 @@
return {
{
"mfussenegger/nvim-lint",
event = { "BufReadPre", "BufNewFile" },
config = function()
require("lint").linters_by_ft = {
markdown = { "proselint" },
}
vim.api.nvim_create_autocmd({ "BufWritePost", "BufEnter" }, {
callback = function()
require("lint").try_lint()
end,
})
end,
},
}