mirror of https://github.com/folke/lazy.nvim.git
fix: bootstrap code now uses git url instead of https for beta testers + fixed rtp path
This commit is contained in:
parent
b8fa6f960f
commit
17d1653b4a
|
@ -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[]
|
||||||
|
|
Loading…
Reference in New Issue