Files
lazyfox/lua/plugins/neorg.lua
2025-08-15 02:02:47 +03:00

36 lines
990 B
Lua

return {
"nvim-neorg/neorg",
lazy = false, -- Disable lazy loading as some `lazy.nvim` distributions set `lazy = true` by default
version = "*", -- Pin Neorg to the latest stable release
config = function()
require("neorg").setup({
lazy = false,
load = {
["core.defaults"] = {},
["core.concealer"] = {}, -- We added this line!
["core.summary"] = {}, -- We added this line!
["core.journal"] = {
config = {
journal_folder = "journal",
},
}, -- We added this line!
["core.dirman"] = {
config = {
workspaces = {
default = "~/Share/Notes",
journal = "~/Share/Notes/journal",
},
default_workspace = "default",
},
},
["core.qol.todo_items"] = {
config = {
create_todo_items = true,
create_todo_parents = true,
},
},
},
})
end,
}