fix: format config files

This commit is contained in:
Devin Lumley 2024-01-09 17:09:27 -08:00
parent 0dcc4fa0ed
commit 580a30e305
8 changed files with 32 additions and 33 deletions

View file

@ -4,7 +4,7 @@ return {
"BufReadPre",
"BufNewFile",
},
config = function ()
config = function()
local lint = require("lint")
lint.linters_by_ft = {
@ -18,7 +18,7 @@ return {
vim.api.nvim_create_autocmd({ "BufEnter", "BufWritePost", "InsertLeave" }, {
group = lint_augroup,
callback = function ()
callback = function()
lint.try_lint()
end
})