Dot_Files/.config/nvim/lua/plugins/configs/_neorg.lua

51 lines
1.5 KiB
Lua
Raw Normal View History

2022-05-11 21:00:57 -05:00
local neorg = require('neorg')
2022-01-14 01:41:10 -06:00
neorg.setup({
load = {
2022-05-11 21:00:57 -05:00
['core.defaults'] = {},
['core.norg.concealer'] = {},
['core.norg.esupports.metagen'] = {
config = {
type = 'auto',
},
},
2022-05-11 21:00:57 -05:00
['core.integrations.nvim-cmp'] = {
config = {},
2022-02-01 15:20:43 -06:00
},
2022-05-11 21:00:57 -05:00
['core.norg.completion'] = {
2022-01-14 01:41:10 -06:00
config = {
2022-05-11 21:00:57 -05:00
engine = 'nvim-cmp',
2022-01-14 01:41:10 -06:00
},
},
2022-05-11 21:00:57 -05:00
['core.keybinds'] = {
2022-01-14 01:41:10 -06:00
config = {
default_keybinds = true,
2022-02-01 15:20:43 -06:00
-- norg_leader = "-"
2022-05-11 21:00:57 -05:00
},
2022-01-14 01:41:10 -06:00
},
2022-05-11 21:00:57 -05:00
['core.norg.dirman'] = {
2022-01-14 01:41:10 -06:00
config = {
workspaces = {
2022-05-11 21:00:57 -05:00
default = '~/.notes', -- Format: <name_of_workspace> = <path_to_workspace_root>
2022-02-01 15:20:43 -06:00
},
autochdir = true, -- Automatically change the directory to the current workspace's root every time
2022-05-11 21:00:57 -05:00
index = 'index.norg', -- The name of the main (root) .norg file
last_workspace = vim.fn.stdpath('cache') .. '/neorg_last_workspace.txt', -- The location to write and read the workspace cache file
},
2022-01-14 01:41:10 -06:00
},
2022-05-11 21:00:57 -05:00
['core.integrations.telescope'] = {},
['core.norg.qol.toc'] = {},
['core.gtd.base'] = {
2022-02-01 15:20:43 -06:00
config = {
2022-05-11 21:00:57 -05:00
workspace = 'default',
},
},
['core.gtd.ui'] = {
config = {},
2022-02-01 15:20:43 -06:00
},
2022-05-11 21:00:57 -05:00
['core.gtd.helpers'] = {
config = {},
2022-02-01 15:20:43 -06:00
},
2022-05-11 21:00:57 -05:00
},
2022-01-14 01:41:10 -06:00
})