2024-02-26 08:24:17 +00:00
|
|
|
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
|
2024-06-26 19:14:25 +00:00
|
|
|
-- vim.list_extend(opts.ensure_installed, {
|
|
|
|
-- "lua",
|
|
|
|
-- })
|
2024-02-26 08:24:17 +00:00
|
|
|
opts.ensure_installed = {}
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
}
|