summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfpi2020-02-12 08:50:43 +0100
committerfpi2020-02-23 18:07:13 +0100
commit78a0d19c044ef44f118c7a92079eecb8eef96bbb (patch)
treed884bae3290fec2f224e412f5ded69270786856a
parentAdd an appointment/event capture template (diff)
Update my agenda view
1. Current INPROGRESS Tasks first. Keep this list small. 2. Main agenda view 3. Second level TODOs are Main Tasks. TODOs at lower levels are subtasks. 4. List of all TODOs 5. List of Ideas 6. Habits 7. Idle stuff
Diffstat (limited to '')
-rw-r--r--emacs-init.org8
1 files changed, 7 insertions, 1 deletions
diff --git a/emacs-init.org b/emacs-init.org
index c2c1b5e..f0737aa 100644
--- a/emacs-init.org
+++ b/emacs-init.org
@@ -1641,7 +1641,13 @@ Hansen's]] configs.
(org-agenda-dim-blocked-tasks t)
(org-agenda-custom-commands
'(("n" "Agenda and all TODOs"
- ((agenda) (tags-todo "+soon")
+ ((todo "INPROGRESS"
+ ((org-agenda-overriding-header "Inprogress Tasks")))
+ (agenda)
+ (tags-todo "+soon+LEVEL=2"
+ ((org-agenda-overriding-header "2nd Level /Soon/ Tasks")))
+ (tags-todo "+soon"
+ ((org-agenda-overriding-header "All /Soon/ Tasks")))
(tags-todo "+shelve")
(tags-todo "+habit")
(todo "IDLE")