mirror of
https://github.com/mitchell/dotfiles.git
synced 2026-08-10 08:09:35 +00:00
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:
parent
9b64299c45
commit
0694ba3805
3 changed files with 7 additions and 4 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -28,6 +28,9 @@ return {
|
|||
"terraform",
|
||||
"yaml",
|
||||
"json",
|
||||
"java",
|
||||
"kotlin",
|
||||
"python",
|
||||
}
|
||||
require("nvim-treesitter").install(langs)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue