emacs/config/agenda.org
Evie Litherland-Smith ce8fe8a57f Remove remaining diary entries, replace with org-agenda files
Diary file just calls sexp org-diary

Move calendar config from org-mode.org -> agenda.org

Don't mark diary entries in calendar by default, slow startup now with
org-agenda included

Don't add config files to refile targets either
2024-03-11 15:13:22 +00:00

833 B

Agenda config

Calendar

  (customize-set-variable 'calendar-date-style 'iso)
  (customize-set-variable 'calendar-mark-holidays-flag t)
  (customize-set-variable 'calendar-mark-diary-entries-flag nil)

Appointment reminders

  (setq appt-display-diary nil            ; Don't display diary on startup
        appt-display-format 'echo
        appt-display-interval 5
        appt-message-warning-time 15)
  (appt-activate +1)

org-agenda integration

  (with-eval-after-load 'org
    (add-hook 'org-agenda-mode-hook #'org-agenda-to-appt))