Skip to content

Commit

Permalink
chore(build): auto-generate vimdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 21, 2022
1 parent 9dfefac commit b802729
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions doc/lazy.nvim.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ REQUIREMENTS *lazy.nvim-requirements*


- Neovim >= **0.8.0** (needs to be built with **LuaJIT**)
- Works on **Linux**, **MacOS** and **Windows**
- Git >= **2.19.0** (for partial clones support)
- a Nerd Font <https://www.nerdfonts.com/> **_(optional)_**

Expand All @@ -66,17 +65,17 @@ You can add the following Lua code to your `init.lua` to bootstrap

>lua
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
end
vim.opt.runtimepath:prepend(lazypath)
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
end
vim.opt.runtimepath:prepend(lazypath)
<


Expand Down

0 comments on commit b802729

Please sign in to comment.