chore: update nvim plugins and switch python tooling to ruff

- bump ale, markview.nvim commits in lazy-lock
- replace pylint with ruff as python linter
- replace black with ruff/ruff_format as python formatter
- add java, kotlin, python to treesitter languages
This commit is contained in:
mitchell 2026-05-12 19:46:14 -04:00
parent 9b64299c45
commit 0694ba3805
3 changed files with 7 additions and 4 deletions

View file

@ -35,7 +35,7 @@ return {
ruby = { "rubocop" },
css = { "stylelint", "biome" },
sh = { "shellcheck" },
python = { "pylint" },
python = { "ruff" },
}
vim.g.ale_fixers = {
@ -57,7 +57,7 @@ return {
elixir = { "mix_format" },
terraform = { "terraform" },
ruby = { "rubocop" },
python = { "black" },
python = { "ruff", "ruff_format" },
lua = { "stylua" },
}
end,