nvim/lua/plugins/nix-workarounds.lua

25 lines
482 B
Lua
Raw Normal View History

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-02-27 13:20:43 +00:00
vim.list_extend(opts.ensure_installed, {
"lua",
})
2024-02-26 08:24:17 +00:00
opts.ensure_installed = {}
end,
},
}