Order org agenda groups and remove redundant tasks
This commit is contained in:
parent
5453df478c
commit
0beb26a94a
26
+org.el
26
+org.el
|
@ -22,25 +22,29 @@
|
|||
org-agenda-block-separator nil
|
||||
org-agenda-compact-blocks t)
|
||||
(setq org-super-agenda-groups '((:name "Overdue"
|
||||
:deadline past)
|
||||
:deadline past
|
||||
:order 0)
|
||||
(:name "Important"
|
||||
:priority "A"
|
||||
:order 1)
|
||||
(:name "Today"
|
||||
:time-grid t
|
||||
:scheduled today
|
||||
:deadline today)
|
||||
(:name "Important"
|
||||
:priority "A")
|
||||
:deadline today
|
||||
:order 2)
|
||||
(:name "Assignments"
|
||||
:tag "labs"
|
||||
:order 3)
|
||||
(:name "Mails"
|
||||
:tag "mail"
|
||||
:order 4)
|
||||
(:name "Errands"
|
||||
:tag ("errand" "call")
|
||||
:order 10)
|
||||
(:name "Thesis"
|
||||
:tag "thesis"
|
||||
:order 10)
|
||||
(:name "Mails"
|
||||
:tag "mail"
|
||||
:order 10)
|
||||
(:name "Errands"
|
||||
:tag ("errand" "call")
|
||||
:order 10)))
|
||||
:order 6)
|
||||
(:discard (:tag ("periodic" "birthday")))))
|
||||
:config
|
||||
(org-super-agenda-mode))
|
||||
;; Add timestamp to DONE task
|
||||
|
|
Loading…
Reference in New Issue