Files
dotfiles/nvim/lua/plugins/treesitter.lua
2025-10-18 10:25:26 +08:00

14 lines
348 B
Lua

-- treesitter.lua - 语法高亮与代码结构
return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
event = { "BufReadPost", "BufNewFile" },
opts = {
ensure_installed = { "go", "python", "lua", "json", "yaml", "markdown" },
highlight = { enable = true },
indent = { enable = true },
},
},
}