Added formatting, linter, and mason_tool_install

This commit is contained in:
Jeremie Fraeys 2023-11-02 12:44:53 -04:00
parent c54236b7ac
commit 8bce42bec4
5 changed files with 206 additions and 23 deletions

View file

@ -0,0 +1,29 @@
return {
"mfussenegger/nvim-lint",
event = {
"BufReadPre",
"BufNewFile",
},
config = function()
local lint = require("lint")
lint.linters_by_ft = {
python = { "flake8", "mypy" },
yaml = { "yamllint" },
json = { "jsonlint" }
}
local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })
vim.api.nvim_create_autocmd({ "BufEnter", "BufWritePost", "InsertLeave" }, {
group = lint_augroup,
callback = function()
lint.try_lint()
end,
})
vim.keymap.set("n", "<leader>ml", function()
lint.try_lint()
end, { desc = "Trigger linting for current file" })
end,
}