mirror of https://github.com/LazyVim/starter
27 lines
533 B
Lua
27 lines
533 B
Lua
return {
|
|
"nvim-neorg/neorg",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-neorg/neorg-telescope",
|
|
},
|
|
build = ":Neorg sync-parsers",
|
|
ft = "norg",
|
|
cmd = "Neorg",
|
|
config = function()
|
|
require("neorg").setup({
|
|
load = {
|
|
["core.defaults"] = {},
|
|
["core.concealer"] = {},
|
|
["core.dirman"] = {
|
|
config = {
|
|
workspaces = {
|
|
notes = "~/notes",
|
|
},
|
|
},
|
|
},
|
|
["core.integrations.telescope"] = {},
|
|
},
|
|
})
|
|
end,
|
|
}
|