From 30e75dbbdf33f393430d6e7612dd32ef84e2a710 Mon Sep 17 00:00:00 2001 From: siduck Date: Mon, 15 Dec 2025 06:53:01 +0530 Subject: [PATCH] temporarily pin nvim-treesitter to master branch closes #3368, will move to main this weekend --- lua/nvchad/plugins/init.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/nvchad/plugins/init.lua b/lua/nvchad/plugins/init.lua index eefbb90..6cd5d18 100644 --- a/lua/nvchad/plugins/init.lua +++ b/lua/nvchad/plugins/init.lua @@ -137,8 +137,8 @@ return { "hrsh7th/cmp-nvim-lua", "hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-buffer", - "https://codeberg.org/FelipeLema/cmp-async-path.git" - } + "https://codeberg.org/FelipeLema/cmp-async-path.git", + }, }, opts = function() return require "nvchad.configs.cmp" @@ -156,6 +156,7 @@ return { { "nvim-treesitter/nvim-treesitter", + branch = "master", event = { "BufReadPost", "BufNewFile" }, cmd = { "TSInstall", "TSBufEnable", "TSBufDisable", "TSModuleInfo" }, build = ":TSUpdate",