update config to lazy
- add some new plugins - remove some old ones - clean up/update some configs
This commit is contained in:
14
lua/plugins/nvim-lint.lua
Normal file
14
lua/plugins/nvim-lint.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
return {
|
||||
"mfussenegger/nvim-lint",
|
||||
config = function()
|
||||
require("lint").linters_by_ft = {
|
||||
markdown = { "markdownlint" },
|
||||
lua = { "luacheck" },
|
||||
py = { "pylint", "pydocstyle", "pycodestyle", "mypy" },
|
||||
sh = { "shellcheck" },
|
||||
json = { "jsonlint" },
|
||||
yaml = { "yamllint" },
|
||||
vim = { "vint" },
|
||||
}
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user