28 lines
654 B
Lua
28 lines
654 B
Lua
-- Customize Mason
|
|
|
|
---@type LazySpec
|
|
return {
|
|
-- use mason-tool-installer for automatically installing Mason packages
|
|
{
|
|
"WhoIsSethDaniel/mason-tool-installer.nvim",
|
|
-- overrides `require("mason-tool-installer").setup(...)`
|
|
opts = {
|
|
-- Make sure to use the names found in `:Mason`
|
|
ensure_installed = {
|
|
-- { "vue-language-server", version = "1.8.27" },
|
|
"black",
|
|
"python-lsp-server",
|
|
"mypy",
|
|
"pylint",
|
|
"flake8",
|
|
"pylama",
|
|
"bandit",
|
|
"pydocstyle",
|
|
"pyproject-flake8",
|
|
"pyproject-fmt",
|
|
"reorder-python-imports",
|
|
},
|
|
},
|
|
},
|
|
}
|