mirror of https://github.com/folke/lazy.nvim.git
docs: bootstrap code will now bootstrap with latest stable lazy release. Fixes #236
This commit is contained in:
parent
5a78451c30
commit
c30c89bc09
|
@ -44,11 +44,12 @@ if not vim.loop.fs_stat(lazypath) then
|
||||||
"clone",
|
"clone",
|
||||||
"--filter=blob:none",
|
"--filter=blob:none",
|
||||||
"--single-branch",
|
"--single-branch",
|
||||||
|
"--branch=stable", -- remove this if you want to bootstrap to HEAD
|
||||||
"https://github.com/folke/lazy.nvim.git",
|
"https://github.com/folke/lazy.nvim.git",
|
||||||
lazypath,
|
lazypath,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
vim.opt.runtimepath:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
```
|
```
|
||||||
|
|
||||||
<!-- bootstrap:end -->
|
<!-- bootstrap:end -->
|
||||||
|
|
Loading…
Reference in New Issue