feat: add neorg

This commit is contained in:
fiplox 2023-06-26 12:12:26 +02:00
parent 48cfacde4e
commit b177e9a731
1 changed files with 22 additions and 0 deletions

View File

@ -336,4 +336,26 @@ return {
width = 0.6,
},
},
{
"nvim-neorg/neorg",
cmd = { "Neorg" },
ft = { "norg" },
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,
},
}