nvim: add a shit ton of packages to mason

This commit is contained in:
2024-04-20 11:14:24 +03:00
parent 224d762178
commit f34e64b66e
6 changed files with 56 additions and 14 deletions

View File

@ -2,6 +2,19 @@ return {
"williamboman/mason.nvim",
build = ":MasonUpdate",
config = function()
require("mason").setup()
require("mason").setup({
opts = {
ensure_installed = {
-- go
"gopls",
"goimports_reviser",
"golangci-lint",
-- python
"black",
"mypy",
"pyright",
}
}
})
end,
}