From 10ccd5e4899a2e3642038d098dce7a75e7a887b4 Mon Sep 17 00:00:00 2001 From: Moshe Avni Date: Mon, 26 Dec 2022 14:01:18 +0200 Subject: [PATCH] docs: fix plugin setup example --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2914dea..5ca5645 100644 --- a/README.md +++ b/README.md @@ -202,18 +202,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 { "nvim-neorg/neorg", ft = "norg", - config = { foo = "bar" }, -- run require("norg").setup({foo = "bar"}) + config = { foo = "bar" }, -- run require("neorg").setup({foo = "bar"}) }, {