11 lines
262 B
Lua
11 lines
262 B
Lua
|
-- extends the treesitter configuration
|
||
|
|
||
|
return {
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
opts = function(_, opts)
|
||
|
if type(opts.ensure_installed) == "table" then
|
||
|
vim.list_extend(opts.ensure_installed, { "markdown", "markdown_inline" })
|
||
|
end
|
||
|
end,
|
||
|
}
|