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

27 lines
700 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 20:39:15 +02:00
-- NOTE: This is the server branch, note taking here should not
-- be needed. Also, my server does not have a synchronisation
-- to nextcloud set up, so I don't have access to my Neorg
-- notes regardless.
2023-09-06 11:47:14 +02:00
},
},
},
},
}
end,
},
}