17 lines
269 B
Lua
17 lines
269 B
Lua
|
-- Customize Treesitter
|
||
|
|
||
|
---@type LazySpec
|
||
|
return {
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
opts = {
|
||
|
ensure_installed = {
|
||
|
"lua",
|
||
|
"vim",
|
||
|
"yaml",
|
||
|
"json",
|
||
|
"tsx",
|
||
|
-- add more arguments for adding more treesitter parsers
|
||
|
},
|
||
|
},
|
||
|
}
|