added neorg plugin

This commit is contained in:
2025-11-10 17:47:39 +01:00
parent 5433880a73
commit f8df1ea641

View File

@@ -0,0 +1,22 @@
return {
"nvim-neorg/neorg",
lazy = false, -- load immediately
version = "*", -- latest stable release
dependencies = { "nvim-lua/plenary.nvim" }, -- Neorg requires plenary
config = function()
require("neorg").setup({
load = {
["core.defaults"] = {}, -- default modules
["core.concealer"] = {}, -- enable the concealer
["core.dirman"] = { -- workspace management
config = {
workspaces = {
notes = "~/notes",
},
default_workspace = "notes",
},
},
},
})
end,
}