25 lines
482 B
Lua
25 lines
482 B
Lua
return {
|
|
{
|
|
"williamboman/mason.nvim",
|
|
opts = function(_, opts)
|
|
-- add tsx and treesitter
|
|
-- vim.list_extend(opts.ensure_installed, {
|
|
-- "tsx",
|
|
-- "typescript",
|
|
-- })
|
|
opts.ensure_installed = {}
|
|
end,
|
|
},
|
|
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = function(_, opts)
|
|
-- add tsx and treesitter
|
|
vim.list_extend(opts.ensure_installed, {
|
|
"lua",
|
|
})
|
|
opts.ensure_installed = {}
|
|
end,
|
|
},
|
|
}
|