nvim-config/lua/myLuaConf/lint.lua
Gabe Venberg 3bd72ab98f Ported config from nixvim.
Made some changes to taste along the way,
though there are some still to come.
2025-07-03 02:18:39 +02:00

20 lines
468 B
Lua

require('lze').load {
{
"nvim-lint",
for_cat = 'lint',
-- cmd = { "" },
event = "FileType",
-- ft = "",
-- keys = "",
-- colorscheme = "",
after = function (plugin)
require('lint').linters_by_ft = {
-- NOTE: download some linters in lspsAndRuntimeDeps
-- and configure them here
-- markdown = {'vale',},
-- javascript = { 'eslint' },
-- typescript = { 'eslint' },
}
end,
},
}