2024-04-11 08:04:03 +01:00
|
|
|
-- if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
|
2024-04-11 07:33:31 +01:00
|
|
|
|
|
|
|
-- Customize Treesitter
|
|
|
|
|
|
|
|
---@type LazySpec
|
|
|
|
return {
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
|
|
|
opts = function(_, opts)
|
|
|
|
-- add more things to the ensure_installed table protecting against community packs modifying it
|
|
|
|
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, {
|
|
|
|
"lua",
|
|
|
|
"vim",
|
|
|
|
-- add more arguments for adding more treesitter parsers
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
}
|