From e664b6f464e3f5575449eb63b2e8fbc24010c403 Mon Sep 17 00:00:00 2001 From: Mathias Schneider Date: Fri, 3 Apr 2026 07:41:31 +0200 Subject: [PATCH] some fixes to treesitter --- term/.config/nvim/lua/plugins/treesitter.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/term/.config/nvim/lua/plugins/treesitter.lua b/term/.config/nvim/lua/plugins/treesitter.lua index 775e48c..ce71b6c 100644 --- a/term/.config/nvim/lua/plugins/treesitter.lua +++ b/term/.config/nvim/lua/plugins/treesitter.lua @@ -1,6 +1,6 @@ return { "nvim-treesitter/nvim-treesitter", - lazy = true, + branch = "master", build = ":TSUpdate", event = { "BufReadPost", "BufNewFile" }, config = function() @@ -11,6 +11,7 @@ return { ensure_installed = { "python", "lua", "json", "yaml", "javascript", "typescript" }, highlight = { enable = true }, indent = { enable = true }, + folding = { enable = true }, }) end end,