22 lines
309 B
Lua
22 lines
309 B
Lua
-- Customize Treesitter
|
|
|
|
---@type LazySpec
|
|
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = {
|
|
"bash",
|
|
"diff",
|
|
"go",
|
|
"html",
|
|
"lua",
|
|
"luadoc",
|
|
"markdown",
|
|
"markdown_inline",
|
|
"query",
|
|
"vim",
|
|
"vimdoc",
|
|
},
|
|
},
|
|
}
|