Files
lazy_config/lua/plugins/mason.lua
2025-05-08 12:58:10 -04:00

25 lines
396 B
Lua

return {
"williamboman/mason.nvim",
opts = {
ensure_installed = {
-- python
"basedpyright",
"ruff",
-- js, json, xml, all front end stuff
"black",
"biome",
"lemminx",
-- lua
"stylua",
"lua-language-server",
--ruby
"ruby-lsp",
-- bash
"shfmt",
-- go
"goimports",
"gofumpt"
},
},
}