mirror of https://github.com/folke/lazy.nvim.git
docs: updated docs
This commit is contained in:
parent
b6ebed5888
commit
96e82986ee
|
@ -209,7 +209,7 @@ return {
|
||||||
config = true, -- run require("neorg").setup()
|
config = true, -- run require("neorg").setup()
|
||||||
},
|
},
|
||||||
|
|
||||||
-- or set custom config
|
-- or set a custom config:
|
||||||
{
|
{
|
||||||
"nvim-neorg/neorg",
|
"nvim-neorg/neorg",
|
||||||
ft = "norg",
|
ft = "norg",
|
||||||
|
|
|
@ -16,18 +16,18 @@ return {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
-- the above could also be written as
|
-- the above could also be written as:
|
||||||
{
|
{
|
||||||
"nvim-neorg/neorg",
|
"nvim-neorg/neorg",
|
||||||
ft = "norg",
|
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",
|
"nvim-neorg/neorg",
|
||||||
ft = "norg",
|
ft = "norg",
|
||||||
config = { foo = "bar" }, -- run require("norg").setup({foo = "bar"})
|
config = { foo = "bar" }, -- run require("neorg").setup({foo = "bar"})
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue