Init commit

This commit is contained in:
Archie Fox
2025-07-25 13:09:33 +03:00
commit 7f1d7f48dd
30 changed files with 1469 additions and 0 deletions

29
lua/plugins/neorg.lua Normal file
View File

@@ -0,0 +1,29 @@
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,
}