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/default", journal = "~/Share/notes/journal", }, default_workspace = "default", }, }, }, }) end, }