Made some changes to taste along the way, though there are some still to come.
20 lines
468 B
Lua
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,
|
|
},
|
|
}
|