Made a lazy config folder

This commit is contained in:
2023-08-24 13:55:47 +02:00
parent 047fad8f52
commit 6b69394c0a
6 changed files with 32 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
local status, neorg = pcall(require, "neorg")
if not status then
return
end
neorg.setup({
load = {
["core.defaults"] = {},
["core.concealer"] = {},
["core.dirman"] = {
config = {
workspaces = {
main = "~/neorg/main",
},
},
},
},
})