nvim/lua/plugins/treesitter.lua

18 lines
289 B
Lua
Raw Permalink Normal View History

2024-07-11 15:32:22 +05:30
-- Customize Treesitter
---@type LazySpec
return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"lua",
"vim",
"yaml",
"json",
"tsx",
2024-08-11 19:03:05 +05:30
"typescript",
2024-07-11 15:32:22 +05:30
-- add more arguments for adding more treesitter parsers
},
},
}