return { { 'chipsenkbeil/org-roam.nvim', dependencies = { 'nvim-orgmode/orgmode', }, opts = { directory = '~/org', bindings = { prefix = '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, }, }