Added Neorg

Added in Neorg. This is just a base setup, could probably use some
tweaking, but that will be in further development. For now loading this
works.
This commit is contained in:
2026-05-18 19:19:59 -04:00
parent 2c994818e3
commit 83c2cc26ff
@@ -0,0 +1,21 @@
return {
"nvim-neorg/neorg",
lazy = false,
version = "*",
config = function()
require("neorg").setup({
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
notes = "~/notes",
},
default_workspace = "notes",
},
},
},
})
end,
}