diff --git a/README.md b/README.md index 3f8892c..3d4e54c 100644 --- a/README.md +++ b/README.md @@ -209,7 +209,7 @@ return { config = true, -- run require("neorg").setup() }, - -- or set custom config + -- or set a custom config: { "nvim-neorg/neorg", ft = "norg", diff --git a/lua/lazy/example.lua b/lua/lazy/example.lua index 870ad02..b50e985 100644 --- a/lua/lazy/example.lua +++ b/lua/lazy/example.lua @@ -16,18 +16,18 @@ return { 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 + -- or set a 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"}) }, {