docs: bootstrap code will now bootstrap with latest stable lazy release. Fixes #236

This commit is contained in:
Folke Lemaitre 2022-12-29 23:36:26 +01:00
parent 5a78451c30
commit c30c89bc09
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 2 additions and 1 deletions

View File

@ -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 -->