2023-01-14 19:16:59 +00:00
|
|
|
return {
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
2023-04-28 13:56:43 +00:00
|
|
|
opts = function(_, opts)
|
|
|
|
-- add more things to the ensure_installed table protecting against community packs modifying it
|
2023-05-01 17:25:53 +00:00
|
|
|
opts.ensure_installed = require("astronvim.utils").list_insert_unique(opts.ensure_installed, {
|
2024-01-10 12:56:16 +00:00
|
|
|
"astro",
|
|
|
|
"yaml",
|
|
|
|
"svelte",
|
|
|
|
"dockerfile",
|
|
|
|
"json5",
|
|
|
|
"markdown"
|
2023-04-28 13:56:43 +00:00
|
|
|
})
|
|
|
|
end,
|
2023-01-14 19:16:59 +00:00
|
|
|
}
|