docs: updated docs

This commit is contained in:
Folke Lemaitre 2022-12-26 23:19:37 +01:00
parent b6ebed5888
commit 96e82986ee
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
2 changed files with 5 additions and 5 deletions

View File

@ -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",

View File

@ -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"})
},
{