chore(build): auto-generate vimdoc

This commit is contained in:
github-actions[bot] 2022-12-30 13:47:17 +00:00
parent de82a99197
commit 8d452e37bb
1 changed files with 4 additions and 8 deletions

View File

@ -68,14 +68,10 @@ You can add the following Lua code to your `init.lua` to bootstrap
>lua >lua
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ if not vim.loop.fs_stat(lazypath) then
"git", vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath })
"clone", vim.fn.system({ "git", "-C", lazypath, "checkout", "tags/stable" }) -- last stable release
"--filter=blob:none", end
"--branch=stable", -- remove this if you want to bootstrap to HEAD
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
end end
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)
< <