This commit is contained in:
Christian Nieves
2023-08-01 23:08:02 +00:00
parent d40aad6717
commit 52de0f9163
3 changed files with 100 additions and 93 deletions

View File

@ -0,0 +1,10 @@
return {
"mfussenegger/nvim-lint",
config = function()
vim.api.nvim_create_autocmd({ "BufWritePost" }, {
callback = function()
require("lint").try_lint()
end,
})
end,
}