From 96e82986eeae3d4c5f96c927aae4a17acf0a3081 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Mon, 26 Dec 2022 23:19:37 +0100 Subject: [PATCH] docs: updated docs --- README.md | 2 +- lua/lazy/example.lua | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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"}) }, {