From 17d1653b4a39b80e0d59e3e4877cf23cdd9b6756 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Thu, 15 Dec 2022 23:24:16 +0100 Subject: [PATCH] fix: bootstrap code now uses git url instead of https for beta testers + fixed rtp path --- lua/lazy/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lazy/init.lua b/lua/lazy/init.lua index 10bbe2d..4476603 100644 --- a/lua/lazy/init.lua +++ b/lua/lazy/init.lua @@ -75,11 +75,11 @@ function M.bootstrap() "clone", "--filter=blob:none", "--single-branch", - "https://github.com/folke/lazy.nvim.git", + "git@github.com:folke/lazy.nvim.git", lazypath, }) - vim.opt.runtimepath:prepend(lazypath) end + vim.opt.runtimepath:prepend(lazypath) end ---@return LazyPlugin[]