From 97eed01a3eb80b13cd19d6b1b579ce64ca7a1fde Mon Sep 17 00:00:00 2001 From: Scott Carroll Date: Sun, 1 Jun 2025 10:04:40 +0100 Subject: [PATCH] Disable Lazy update check on start --- nvim/.config/nvim/lua/config/lazy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/lua/config/lazy.lua b/nvim/.config/nvim/lua/config/lazy.lua index f5ee74c..0b93d4e 100644 --- a/nvim/.config/nvim/lua/config/lazy.lua +++ b/nvim/.config/nvim/lua/config/lazy.lua @@ -31,5 +31,5 @@ require("lazy").setup({ -- colorscheme that will be used when installing plugins. install = { colorscheme = { "habamax" } }, -- automatically check for plugin updates - checker = { enabled = true }, + checker = { enabled = false }, })