add neorg to lunarvim
This commit is contained in:
parent
70b1001864
commit
dc01d6b873
4 changed files with 72 additions and 585 deletions
34
.config/lvim/lua/conf/neorg.lua
Normal file
34
.config/lvim/lua/conf/neorg.lua
Normal 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"] = {},
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue