neovim-confs/lua/plex/plugins/extras/org/neorg.lua

27 lines
668 B
Lua
Raw Normal View History

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 18:27:39 +02:00
-- FIXME: This shouldn't be in the Versioncontrol. Make this
-- into a local extension of the plugin.
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,
},
}