From 604b39912a20108bd4d0231f80bd71f9963458d2 Mon Sep 17 00:00:00 2001 From: Michael Peters Date: Tue, 18 Oct 2022 13:20:22 -0700 Subject: [PATCH] pin treesitter version from breaking nvim 0.8 changes --- lua/plugins.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index 498840e..72fb433 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -34,7 +34,8 @@ packer.startup { -- -- Colorscheme (See autocommands.lua) - use { 'lunarvim/darkplus.nvim' } + --use { 'lunarvim/darkplus.nvim' } + use { '~/builds/darkplus.nvim' } -- Buffer Line use { 'moll/vim-bbye' } -- Close buffers softly @@ -78,7 +79,10 @@ packer.startup { use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate', - config = function() require'configs.treesitter'.config() end + config = function() require'configs.treesitter'.config() end, + commit = '4cccb6f494eb255b32a290d37c35ca12584c74d0', + -- the next commit, 42ab95d5e11f247c6f0c8f5181b02e816caa4a4f breaks the darkplus colorscheme (and nvim 0.7.2) + -- https://github.com/nvim-treesitter/nvim-treesitter/pull/3656 } -- Auto-close tags