From ef272ff7cc9b53d48baf6544618b5923d65c0282 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Thu, 2 Apr 2026 10:11:23 +0200 Subject: [PATCH] fix(treesitter): `nvim-treesitter` on longer support nvim-0.11, so pin when needed. Fixes #7092 --- lua/lazyvim/plugins/treesitter.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/lazyvim/plugins/treesitter.lua b/lua/lazyvim/plugins/treesitter.lua index 6de91b30..4ef68c8f 100644 --- a/lua/lazyvim/plugins/treesitter.lua +++ b/lua/lazyvim/plugins/treesitter.lua @@ -6,6 +6,7 @@ return { { "nvim-treesitter/nvim-treesitter", branch = "main", + commit = vim.fn.has("nvim-0.12") == 0 and "7caec274fd19c12b55902a5b795100d21531391f" or nil, version = false, -- last release is way too old and doesn't work on Windows build = function() local TS = require("nvim-treesitter")