mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-12 20:23:50 +00:00
24 lines
632 B
Lua
24 lines
632 B
Lua
|
return {
|
||
|
|
||
|
{ -- Linting
|
||
|
'mfussenegger/nvim-lint',
|
||
|
event = { 'BufReadPre', 'BufNewFile' },
|
||
|
config = function()
|
||
|
local lint = require 'lint'
|
||
|
lint.linters_by_ft = {
|
||
|
markdown = { 'markdownlint' },
|
||
|
}
|
||
|
|
||
|
-- Create autocommand which carries out the actual linting
|
||
|
-- on the specified events.
|
||
|
local lint_augroup = vim.api.nvim_create_augroup('lint', { clear = true })
|
||
|
vim.api.nvim_create_autocmd({ 'BufEnter', 'BufWritePost', 'InsertLeave' }, {
|
||
|
group = lint_augroup,
|
||
|
callback = function()
|
||
|
require('lint').try_lint()
|
||
|
end,
|
||
|
})
|
||
|
end,
|
||
|
},
|
||
|
}
|