From 077ba241cc31d812a0b8760103340e892d8811c1 Mon Sep 17 00:00:00 2001 From: Simon Ziegler Date: Thu, 2 Oct 2025 20:08:33 +0200 Subject: [PATCH] disabled lazy update searching --- lua/config/lazy.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index f5ee74c..efa1f11 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -27,9 +27,11 @@ require("lazy").setup({ -- import your plugins { import = "plugins" }, }, + -- Configure any other settings here. See the documentation for more details. -- colorscheme that will be used when installing plugins. install = { colorscheme = { "habamax" } }, + -- -- automatically check for plugin updates - checker = { enabled = true }, + checker = { enabled = false }, })