dotfiles/.config/nvim/lua/plugins/extras/editor/neorg.lua
Sergio Laín 353bbc67f2
feat(nvim): added a lot of extras
wildfire, neorg, obsidian, autosave, no-neck-pain, etc
2023-11-16 23:48:31 +01:00

26 lines
739 B
Lua

return {
"nvim-neorg/neorg",
build = ":Neorg sync-parsers",
dependencies = { "nvim-lua/plenary.nvim" },
event = "VeryLazy",
opts = {
load = {
["core.defaults"] = {}, -- Loads default behaviour
["core.concealer"] = {}, -- Adds pretty icons to your documents
["core.keybinds"] = {}, -- Adds default keybindings
["core.completion"] = {
config = {
engine = "nvim-cmp",
},
}, -- Enables support for completion plugins
["core.journal"] = {}, -- Enables support for the journal module
["core.dirman"] = { -- Manages Neorg workspaces
config = {
workspaces = {
notes = "~/projects/notes",
},
},
},
},
},
}