From 9585532cc476f313645736e321caba5c342b8bff Mon Sep 17 00:00:00 2001 From: Seth Etter Date: Mon, 16 Dec 2024 16:20:13 +0000 Subject: [PATCH] disable lazy.nvim auto checking on boot so nvim starts up faster! --- nvim/lua/config/lazy.lua | 4 ++-- 1 file(s) changed, 2 insertion(s)(+), 2 deletion(s)(-) diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua --- a/nvim/lua/config/lazy.lua +++ b/nvim/lua/config/lazy.lua @@ -30,6 +30,6 @@ -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. install = { colorscheme = { "rose-pine" } }, - -- automatically check for plugin updates - checker = { enabled = true }, + -- disable automatic checking for plugin updates + checker = { enabled = false }, }) -- tangled.sh