aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/orgmode.lua
blob: a9d6ea04d84172848fbc8bafd25c5237ddae8c8e (plain)
1
2
3
4
5
6
7
8
9
10
11
return {
  'nvim-orgmode/orgmode',
  event = 'VeryLazy',
  ft = { 'org' },
  config = function()
    require('orgmode').setup({
      org_agenda_files = '~/orgfiles/**/*',
      org_default_notes_file = '~/orgfiles/refile.org',
    })
  end,
}
..