fix: bootstrap code now uses git url instead of https for beta testers + fixed rtp path

This commit is contained in:
Folke Lemaitre 2022-12-15 23:24:16 +01:00
parent b8fa6f960f
commit 17d1653b4a
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 2 additions and 2 deletions

View File

@ -75,11 +75,11 @@ function M.bootstrap()
"clone", "clone",
"--filter=blob:none", "--filter=blob:none",
"--single-branch", "--single-branch",
"https://github.com/folke/lazy.nvim.git", "git@github.com:folke/lazy.nvim.git",
lazypath, lazypath,
}) })
vim.opt.runtimepath:prepend(lazypath)
end end
vim.opt.runtimepath:prepend(lazypath)
end end
---@return LazyPlugin[] ---@return LazyPlugin[]