From de383740a24cdbb4a8df48e2415ab79770df200c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 26 Dec 2022 19:46:34 +0000 Subject: [PATCH] chore(build): auto-generate vimdoc --- doc/lazy.nvim.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/lazy.nvim.txt b/doc/lazy.nvim.txt index 39893d6..08de56d 100644 --- a/doc/lazy.nvim.txt +++ b/doc/lazy.nvim.txt @@ -243,18 +243,18 @@ EXAMPLES ~ end, }, - -- the above could also be written as + -- the above could also be written as: { "nvim-neorg/neorg", ft = "norg", - config = true, -- run require("norg").setup() + config = true, -- run require("neorg").setup() }, -- or set custom config { "nvim-neorg/neorg", ft = "norg", - config = { foo = "bar" }, -- run require("norg").setup({foo = "bar"}) + config = { foo = "bar" }, -- run require("neorg").setup({foo = "bar"}) }, { @@ -686,7 +686,7 @@ For a real-life example, you can check my personal dots: - init.lua where I require `config.lazy` - config.lazy where I bootstrap and setup **lazy.nvim** -- config.plugins is my main plugin config module +- config.plugins is my main plugin config module - Any submodule of config.plugins (submodules) will be automatically loaded as well.