feat: add plugins

Signed-off-by: d0zingcat <iamtangli42@gmail.com>
This commit is contained in:
2025-10-18 10:25:26 +08:00
parent 6cfd65a389
commit 36f59cda51
25 changed files with 2547 additions and 222 deletions

View File

@@ -0,0 +1,13 @@
-- 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 },
},
},
}