aboutsummaryrefslogtreecommitdiff
path: root/plugin-settings/orgmode.lua
blob: 7f7428effe144ce9b7b949e396c28f189b94bed0 (plain) (blame)
1
2
3
4
5
6
7
local xdg_data = os.getenv("XDG_DATA_HOME") or "~/.local/share"
local orgmode_files = xdg_data .. "/orgmode"

require('orgmode').setup({
  org_agenda_files = {orgmode_files .. '/**/*'},
  org_default_notes_file = orgmode_files .. 'default.org',
})