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

29 lines
699 B
Lua
Raw Normal View History

2023-09-06 11:47:14 +02:00
return {
{
"nvim-neorg/neorg",
2023-09-11 23:09:33 +02:00
enabled = false,
lazy = true,
2023-09-06 11:47:14 +02:00
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
2023-09-10 19:37:33 +02:00
["core.export"] = {},
2023-09-06 11:47:14 +02:00
["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 20:26:16 +02:00
main = "~/Nextcloud/Neorg",
2023-09-11 21:41:05 +02:00
notes = "~/Nextcloud/Notizen",
2023-09-06 11:47:14 +02:00
},
},
},
},
}
end,
},
}