nvim/lua/plugins/treesitter.lua

18 lines
289 B
Lua

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