nvim/lua/plugins/nix-workarounds.lua

26 lines
516 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
-- vim.list_extend(opts.ensure_installed, {
-- "tsx",
-- "typescript",
-- })
opts.ensure_installed = {}
end,
},
}