master #1

Open
oli wants to merge 912 commits from master into lua
Showing only changes of commit b33b0eecea - Show all commits

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

@@ -0,0 +1,20 @@
return {
'nvim-neorg/neorg',
build = ':Neorg sync-parsers',
dependencies = { 'nvim-lua/plenary.nvim' },
config = function()
require('neorg').setup {
load = {
['core.defaults'] = {}, -- Loads default behaviour
['core.concealer'] = {}, -- Adds pretty icons to your documents
['core.dirman'] = { -- Manages Neorg workspaces
config = {
workspaces = {
notes = '~/notes',
},
},
},
},
}
end,
}