summaryrefslogtreecommitdiff
path: root/emacs-init.org
diff options
context:
space:
mode:
authorfpi2020-07-07 19:41:51 +0200
committerfpi2020-07-07 19:44:25 +0200
commit070f4284de76c2ac7b8f8011a5e810e2dd014564 (patch)
tree055370bdf48e5f51ff7cf544798720079baff5ed /emacs-init.org
parentUpdate package versions (diff)
Add next weeks agenda view
Diffstat (limited to '')
-rw-r--r--emacs-init.org11
1 files changed, 9 insertions, 2 deletions
diff --git a/emacs-init.org b/emacs-init.org
index e2602f6..67d6abe 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -2629,9 +2629,16 @@ Switch projects and subprojects from NEXT back to TODO"
(org-agenda-custom-commands
`(("d" "Day agenda"
((agenda "" ((org-agenda-span 'day)))
- (org-time-budgets-in-agenda-maybe)))
- ("w" "Week agenda"
+ (org-time-budgets-in-agenda-maybe)
+ (tags-todo "/+INPROGRESS"
+ ((org-agenda-overriding-header "Active Tasks")))))
+ ("w" . "Week agendas")
+ ("ww" "Standard week agenda"
((agenda "" ((org-agenda-span 'week)))))
+ ("wn" "Next Week's agenda"
+ ((agenda "" ((org-agenda-span 'week)
+ (org-agenda-start-day "mon")))
+ (tags-todo "+work")))
("n" "Agenda and all TODOs"
((todo "INPROGRESS"
((org-agenda-overriding-header "Inprogress Tasks")))