From 8f9ff242acb0545b226cbcd3b9ad9c1063568967 Mon Sep 17 00:00:00 2001 From: Ari Pollak Date: Mon, 22 Apr 2024 17:21:48 -0400 Subject: [PATCH] Remove nvim-treesitter prefer_git My nevim config is in a git submodule, and starting up neovim with the latest kickstart.nvim init.lua with this set to true seems to have broken my local git repo. I'm now getting "fatal: unable to read ..." errors, so I have to reinitialize the submodule from scratch --- init.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/init.lua b/init.lua index 036eefb8..7c72a1cc 100644 --- a/init.lua +++ b/init.lua @@ -850,8 +850,6 @@ require('lazy').setup({ config = function(_, opts) -- [[ Configure Treesitter ]] See `:help nvim-treesitter` - -- Prefer git instead of curl in order to improve connectivity in some environments - require('nvim-treesitter.install').prefer_git = true ---@diagnostic disable-next-line: missing-fields require('nvim-treesitter.configs').setup(opts)