Files
nvim.rc/lua/plugins/treesitter.lua
2025-09-15 16:51:16 +08:00

17 lines
319 B
Lua

-- if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
-- Customize Treesitter
---@type LazySpec
return {
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"lua",
"vim",
"go",
-- add more arguments for adding more treesitter parsers
},
},
}