2023-09-06 11:47:14 +02:00
|
|
|
return {
|
|
|
|
{
|
|
|
|
"nvim-neorg/neorg",
|
|
|
|
lazy = false,
|
|
|
|
build = ":Neorg sync-parsers",
|
|
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
|
|
config = function()
|
|
|
|
require("neorg").setup {
|
|
|
|
load = {
|
|
|
|
["core.defaults"] = {}, -- Loads default behaviour
|
|
|
|
["core.concealer"] = {}, -- Adds pretty icons to your documents
|
|
|
|
["core.dirman"] = { -- Manages Neorg workspaces
|
|
|
|
config = {
|
|
|
|
workspaces = {
|
2023-09-07 17:00:57 +02:00
|
|
|
main = "~/winhome/Nextcloud/Neorg",
|
|
|
|
notes = "~/winhome/Nextcloud/Notes",
|
2023-09-06 11:47:14 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
}
|