23 lines
396 B
Lua
23 lines
396 B
Lua
-- Customize Treesitter through AstroCore for AstroNvim v6
|
|
|
|
---@type LazySpec
|
|
return {
|
|
{
|
|
"AstroNvim/astrocore",
|
|
---@type AstroCoreOpts
|
|
opts = {
|
|
treesitter = {
|
|
ensure_installed = {
|
|
"lua",
|
|
"vim",
|
|
"vimdoc",
|
|
"markdown",
|
|
"markdown_inline",
|
|
},
|
|
highlight = true,
|
|
indent = true,
|
|
},
|
|
},
|
|
},
|
|
}
|