nvim_config/lua/plugins/mason.lua

26 lines
629 B
Lua
Raw Normal View History

2025-04-08 15:15:22 +00:00
-- 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 = {
-- install language servers
"lua-language-server",
-- "rust-analyzer",
-- install formatters
"stylua",
"prettierd",
-- install debuggers
"debugpy",
-- install any other package
"tree-sitter-cli",
},
},
},
}