Files
nvim/lua/plugins/orgmode.lua
2024-08-01 15:37:29 +02:00

35 lines
729 B
Lua

return {
{
'chipsenkbeil/org-roam.nvim',
dependencies = {
'nvim-orgmode/orgmode',
},
opts = {
directory = '~/org',
bindings = {
prefix = '<Leader>o',
},
templates = {
n = {
description = 'Note',
template = '%?',
target = '%<%Y%m%d%H%M%S>-%[slug].org',
},
},
},
},
{
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
-- Setup orgmode
require('orgmode').setup {
org_agenda_files = '~/org/**/*',
org_default_notes_file = '~/org/refile.org',
org_todo_keywords = { 'TODO', 'WAITING', '|', 'DONE', 'DELEGATED' },
}
end,
},
}