2023-07-27 19:42:05 +03:00
|
|
|
if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
|
|
|
|
|
|
|
|
-- Exapmle customization of Treesitter
|
2023-01-14 22:16:59 +03:00
|
|
|
return {
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
2023-04-28 16:56:43 +03:00
|
|
|
opts = function(_, opts)
|
|
|
|
-- add more things to the ensure_installed table protecting against community packs modifying it
|
2023-07-26 16:08:29 +03:00
|
|
|
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, {
|
2023-04-28 16:56:43 +03:00
|
|
|
-- "lua"
|
|
|
|
})
|
|
|
|
end,
|
2023-01-14 22:16:59 +03:00
|
|
|
}
|