Init commit
This commit is contained in:
29
lua/plugins/neorg.lua
Normal file
29
lua/plugins/neorg.lua
Normal 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,
|
||||
}
|
||||
Reference in New Issue
Block a user