diff options
Diffstat (limited to 'emacs/.emacs.d/org-mode.el')
-rw-r--r-- | emacs/.emacs.d/org-mode.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/emacs/.emacs.d/org-mode.el b/emacs/.emacs.d/org-mode.el index 3378ffd..83dc782 100644 --- a/emacs/.emacs.d/org-mode.el +++ b/emacs/.emacs.d/org-mode.el @@ -71,6 +71,20 @@ :deadline past :deadline today)))) +(setq org-agenda-custom-commands + '(("w" "Work Agenda" + ((agenda "" ((org-agenda-span 1) + (org-agenda-sorting-strategy '(time-up scheduled-down priority-down deadline-up)) + (org-super-agenda-groups + '((:name "Waiting" :todo "WAIT" :order 9) + (:anything t))))) + (alltodo "" ((org-agenda-overriding-header "") + (org-agenda-skip-function '(org-agenda-skip-if nil '(scheduled deadline))) + (org-super-agenda-groups + '((:todo "TLG") + (:name "Some day" :anything t)))))) + ))) + ;; --- CONFIGURATION --- (define-key global-map "\C-cc" 'org-capture) |