Skip to content

Commit 3da6c74

Browse files
chore(build): auto-generate vimdoc
1 parent b4edbd0 commit 3da6c74

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

doc/lazy.nvim.txt

+8-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,14 @@ You can add the following Lua code to your `init.lua` to bootstrap
6868
>lua
6969
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
7070
if not vim.loop.fs_stat(lazypath) then
71-
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath })
72-
vim.fn.system({ "git", "-C", lazypath, "checkout", "tags/stable" }) -- last stable release
71+
vim.fn.system({
72+
"git",
73+
"clone",
74+
"--filter=blob:none",
75+
"https://github.com/folke/lazy.nvim.git",
76+
"--branch=stable", -- latest stable release
77+
lazypath,
78+
})
7379
end
7480
vim.opt.rtp:prepend(lazypath)
7581
<

0 commit comments

Comments
 (0)