mirror of
https://github.com/tomru/vim.git
synced 2026-03-03 14:37:20 +01:00
19 lines
441 B
Lua
19 lines
441 B
Lua
return {
|
|
'nvim-neorg/neorg',
|
|
build = ':Neorg sync-parsers',
|
|
opts = {
|
|
load = {
|
|
['core.defaults'] = {}, -- Loads default behaviour
|
|
['core.concealer'] = {}, -- Adds pretty icons to your documents
|
|
['core.dirman'] = { -- Manages Neorg workspaces
|
|
config = {
|
|
workspaces = {
|
|
notes = '~/notes',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
dependencies = { { 'nvim-lua/plenary.nvim' } },
|
|
}
|