From beddd50e9856d9cf5fc67d2b15ad854154325dc5 Mon Sep 17 00:00:00 2001 From: Martin Larsson Date: Sun, 20 Oct 2024 03:41:03 +0200 Subject: [PATCH] Remove deprecated config key hererrocks in lazy_init.lua and inrease timeout to 300sec since toml++ and sol2 takes minutes to compile. --- home/.config/nvim/lua/lazy_init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/.config/nvim/lua/lazy_init.lua b/home/.config/nvim/lua/lazy_init.lua index 1487e2c..d34ddf8 100644 --- a/home/.config/nvim/lua/lazy_init.lua +++ b/home/.config/nvim/lua/lazy_init.lua @@ -13,7 +13,7 @@ vim.opt.rtp:prepend(lazypath) -- Initialize plugins, add a plugin by creating a new file in the plugins dir require("lazy").setup("plugs", { - rocks = { - hererocks = true, + git = { + timeout = 300 } })