mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
35 lines
731 B
Lua
35 lines
731 B
Lua
return {
|
|
"nvim-neorg/neorg",
|
|
build = ":Neorg sync-parsers",
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
cmd = { "Neorg" },
|
|
ft = "norg",
|
|
opts = {
|
|
load = {
|
|
["core.defaults"] = {}, -- Loads default behaviour
|
|
["core.concealer"] = {}, -- Adds pretty icons to your documents
|
|
["core.dirman"] = { -- Manages Neorg workspaces
|
|
config = {
|
|
workspaces = {
|
|
university = "~/neorg/University",
|
|
},
|
|
default_workspace = "university",
|
|
},
|
|
},
|
|
["core.completion"] = {
|
|
config = {
|
|
engine = "nvim-cmp",
|
|
name = "[Neorg]",
|
|
},
|
|
},
|
|
["core.export.markdown"] = {},
|
|
["core.summary"] = {
|
|
config = {
|
|
strategy = "default",
|
|
},
|
|
},
|
|
-- ["core.ui.calendar"] = {},
|
|
},
|
|
},
|
|
}
|