27 lines
668 B
Lua
27 lines
668 B
Lua
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 = {
|
|
-- FIXME: This shouldn't be in the Versioncontrol. Make this
|
|
-- into a local extension of the plugin.
|
|
main = "~/winhome/Nextcloud/Neorg",
|
|
notes = "~/winhome/Nextcloud/Notes",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
end,
|
|
},
|
|
}
|