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.