Add nvim-lint options

This commit is contained in:
Yorick Barbanneau 2022-04-18 00:18:00 +02:00
parent 16f1e00291
commit 7af8115e00

View file

@ -0,0 +1,6 @@
require('lint').linters_by_ft = {
bash = {'shellcheck'},
sh = {'shellcheck'}
}
vim.cmd('au BufWritePost <buffer> lua require("lint").try_lint()')