From b33b0eecea0ce3620bd3a664b8cd49a54bfff827 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Wed, 20 Sep 2023 10:29:15 +0200 Subject: [PATCH] added neorg --- lua/plugins/neorg.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lua/plugins/neorg.lua diff --git a/lua/plugins/neorg.lua b/lua/plugins/neorg.lua new file mode 100644 index 0000000..9f1b8d3 --- /dev/null +++ b/lua/plugins/neorg.lua @@ -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, +}