gk.nvim/lua/plugins/treesitter.lua
grechkagk-thinkpad 36c66e33e6 0.0.1
2026-02-01 16:42:22 +08:00

12 lines
303 B
Lua

return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
lazy = false,
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = { "lua", "vim", "vimdoc", "query" },
highlight = { enable = true },
indent = { enable = true },
})
end,
}