Nvim: enable neorg properly

This commit is contained in:
Robert Kmieć
2023-05-23 11:44:23 +02:00
parent c4a1e560ed
commit 64e3bfcf63
2 changed files with 18 additions and 4 deletions

View File

@@ -39,10 +39,6 @@ return {{
"protex/better-digraphs.nvim",
-- }}}
-- Note taking {{{
"nvim-neorg/neorg",
-- }}}
-- Appearance {{{
--"jaredgorski/spacecamp",
--"lifepillar/vim-gruvbox8",

View File

@@ -0,0 +1,18 @@
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" } },
}