From f22e779c290fc4eacf8a5cbadee5e46f3e354995 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 5 May 2023 04:43:06 -0500 Subject: [PATCH] fix(nvim): do not lazy load treesitter This causes issues with highlighting etc. on startup. We pretty much *always* want to use treesitter anyhow, fundamental to all workflows inside of neovim. --- dots/.config/nvim/lua/plugins/plugins.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/dots/.config/nvim/lua/plugins/plugins.lua b/dots/.config/nvim/lua/plugins/plugins.lua index 5b38033d..fbddabc9 100755 --- a/dots/.config/nvim/lua/plugins/plugins.lua +++ b/dots/.config/nvim/lua/plugins/plugins.lua @@ -87,7 +87,6 @@ lazy.setup({ -- Treesitter { "nvim-treesitter/nvim-treesitter", - event = "VeryLazy", build = ":TSUpdate", dependencies = { { url = "https://gitlab.com/HiPhish/nvim-ts-rainbow2.git" },