Separate email-invited events, move others into diary.gpg

This commit is contained in:
Evie Litherland-Smith 2024-06-29 14:13:50 +01:00
parent c7d195fde4
commit 46fd634650
3 changed files with 6 additions and 4 deletions

BIN
diary.gpg Normal file

Binary file not shown.

View file

@ -191,7 +191,9 @@
(use-package calendar
:bind (("C-c >" . calendar))
:hook ((calendar-today-visible . calendar-mark-today))
:custom
(diary-file (locate-user-emacs-file "diary.gpg"))
(calendar-date-style 'iso)
(calendar-mark-holidays-flag t)
(calendar-mark-diary-entries-flag nil)
@ -549,8 +551,8 @@
(org-agenda-sticky nil)
(org-agenda-window-setup 'current-window)
(org-agenda-tags-column 0)
(org-agenda-diary-file (expand-file-name "calendar.org.gpg" org-directory))
(org-agenda-include-diary nil)
(org-agenda-diary-file 'diary-file)
(org-agenda-include-diary t)
(org-agenda-include-deadlines t)
(org-agenda-todo-ignore-scheduled 'future)
(org-agenda-todo-ignore-deadlines 'far)

View file

@ -270,8 +270,8 @@
(use-package gnus-icalendar
:after (mu4e org-agenda)
:custom
(gnus-icalendar-org-capture-file org-agenda-diary-file)
(gnus-icalendar-org-capture-headline '("Email"))
(gnus-icalendar-org-capture-file (expand-file-name "email-events.org.gpg" org-directory))
(gnus-icalendar-org-capture-headline '("Inbox"))
:config
(require 'org-agenda)
(require 'org-capture)