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 15, 2022
1 parent c812daf commit 1f70834
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/lazy.nvim.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ INSTALLATION *lazy.nvim-installation*

You can use the following Lua code to bootstrap **lazy.nvim**

>
>lua
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
Expand All @@ -88,7 +88,7 @@ You can use the following Lua code to bootstrap **lazy.nvim**

Next step is to add **lazy.nvim** to the top of your `init.lua`

>
>lua
-- You can use a lua module that contains your plugins.
-- All sub modules of the lua module will also be automatically loaded
-- This is the preferred setup so your plugin specs can be properly cached.
Expand Down Expand Up @@ -132,7 +132,7 @@ PLUGIN SPEC *lazy.nvim-plugin-spec*
│**keys** │string? or string[] │Lazy-load on key mapping │


>
>lua
return {
-- the colorscheme should be available when starting Neovim
"folke/tokyonight.nvim",
Expand Down Expand Up @@ -212,7 +212,7 @@ CONFIGURATION *lazy.nvim-configuration*

**lazy.nvim** comes with the following defaults:

>
>lua
{
root = vim.fn.stdpath("data") .. "/lazy", -- directory where plugins will be installed
defaults = {
Expand Down

0 comments on commit 1f70834

Please sign in to comment.