17 lines
250 B
Lua
17 lines
250 B
Lua
-- Customize Treesitter
|
|
|
|
---@type LazySpec
|
|
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
branch = "main",
|
|
build = ":TSUpdate",
|
|
opts = {
|
|
ensure_installed = {
|
|
"lua",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"vim",
|
|
},
|
|
},
|
|
}
|