Files
dotfiles/nvim/lua/plugins/treesitter.lua
T
2026-07-19 20:39:54 +08:00

22 lines
657 B
Lua

-- =============================================================================
-- treesitter.lua — 语法高亮与折叠
-- =============================================================================
return {
{
"nvim-treesitter/nvim-treesitter",
event = { "BufReadPre", "BufNewFile" },
build = ":TSUpdate",
opts = {
ensure_installed = {
"lua", "bash", "rust", "c", "cpp", "cmake",
"python", "java", "go", "json", "toml",
"markdown", "regex", "vim",
},
highlight = { enable = true },
indent = { enable = true },
fold = { enable = true }, -- nvim-ufo 依赖
},
},
}