add neorg to lunarvim

This commit is contained in:
Daniel Yrovas 2022-03-25 14:47:18 +11:00
parent 70b1001864
commit dc01d6b873
Signed by: danielyrovas
GPG key ID: C181BAC70BDE7C00
4 changed files with 72 additions and 585 deletions

View file

@ -0,0 +1,34 @@
local status_ok, neorg = pcall(require, 'neorg')
if not status_ok then
vim.notify 'Neorg did not load'
return
end
neorg.setup {
load = {
["core.defaults"] = {},
["core.norg.journal"] = {
config = {
workspace = "notes"
}
},
["core.norg.dirman"] = {
config = {
workspaces = {
notes = "~/Documents/notes",
},
autochdir = true,
index = "index.norg",
}
},
["core.gtd.base"] = {
config = {
workspace = "notes",
}
},
["core.gtd.ui"] = {},
["core.norg.concealer"] = {},
-- ["core.norg.completion"] = { config = { 'nvim-cmp'}},
-- ["core.integrations.nvim-cmp"] = {},
}
}