commit 824e57ad0cf03edaf2fade771da946488a0c57b8
parent 115f368191c407250f538175d55255c9570d897e
Author: Alex Balgavy <alex@balgavy.eu>
Date: Sun, 6 Mar 2022 01:03:52 +0100
emacs: some more custom agenda views
Diffstat:
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/emacs/config.org b/emacs/config.org
@@ -1077,6 +1077,16 @@ The first two strings are what shows up in the agenda dispatcher (the key to pre
((tags-todo "READ" ((org-agenda-overriding-header "To read:")))))
("Sl" "Saved to listen"
((tags-todo "LISTEN" ((org-agenda-overriding-header "To listen:")))))
+
+ ("a" . "Agenda with schedule only...")
+ ("aw" "This week"
+ ((agenda "" ((org-agenda-span 'week)))))
+ ("ad" "Today"
+ ((agenda "" ((org-agenda-span 'day)))))
+ ("at" "Tomorrow"
+ ((agenda "" ((org-agenda-span 'day)
+ (org-agenda-start-day "+1d")))))
+
("w" "Week Agenda + Next Actions"
((agenda "" ((org-agenda-overriding-header "Week agenda:")))
(todo "NEXT" ((org-agenda-overriding-header "Next actions:")))))