Files
neovim/lua/plugins/mason.lua

16 lines
397 B
Lua

---@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 any other package
'tree-sitter-cli',
},
},
},
}