This commit is contained in:
Dmitri 2025-05-03 10:45:25 +02:00
parent 0dfccb5899
commit 4ec5a2562a
Signed by: kanopo
GPG Key ID: 759ADD40E3132AC7

View File

@ -1,40 +0,0 @@
return {
"nvim-neorg/neorg",
lazy = true, -- Enable lazy loading
version = "*", -- Pin Neorg to the latest stable release
cmd = "Neorg", -- Load when the Neorg command is used
ft = "norg", -- Load when a .norg file is opened
build = ":Neorg sync-parsers",
config = function()
require("neorg").setup({
load = {
["core.defaults"] = {},
["core.dirman"] = {
config = {
workspaces = {
default = "~/Documents/notes",
},
default_workspace = "default",
index = "index.norg",
}
},
["core.journal"] = {
config = {
workspace = "default"
},
},
["core.concealer"] = {
config = {
icon_preset = "varied",
},
},
-- ["core.export"] = {
-- config = {}
-- },
-- ["core.export.markdown"] = {
-- config = {}
-- }
}
})
end,
}