mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-14 23:16:47 +00:00
14 lines
348 B
Lua
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 },
|
|
},
|
|
},
|
|
}
|