mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-19 21:06:46 +00:00
docs: updated docs
This commit is contained in:
parent
b6ebed5888
commit
96e82986ee
2 changed files with 5 additions and 5 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue