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-block-separator nil
|
||||||
org-agenda-compact-blocks t)
|
org-agenda-compact-blocks t)
|
||||||
(setq org-super-agenda-groups '((:name "Overdue"
|
(setq org-super-agenda-groups '((:name "Overdue"
|
||||||
:deadline past)
|
:deadline past
|
||||||
|
:order 0)
|
||||||
|
(:name "Important"
|
||||||
|
:priority "A"
|
||||||
|
:order 1)
|
||||||
(:name "Today"
|
(:name "Today"
|
||||||
:time-grid t
|
:time-grid t
|
||||||
:scheduled today
|
:scheduled today
|
||||||
:deadline today)
|
:deadline today
|
||||||
(:name "Important"
|
:order 2)
|
||||||
:priority "A")
|
|
||||||
(:name "Assignments"
|
(:name "Assignments"
|
||||||
:tag "labs"
|
:tag "labs"
|
||||||
|
:order 3)
|
||||||
|
(:name "Mails"
|
||||||
|
:tag "mail"
|
||||||
|
:order 4)
|
||||||
|
(:name "Errands"
|
||||||
|
:tag ("errand" "call")
|
||||||
:order 10)
|
:order 10)
|
||||||
(:name "Thesis"
|
(:name "Thesis"
|
||||||
:tag "thesis"
|
:tag "thesis"
|
||||||
:order 10)
|
:order 6)
|
||||||
(:name "Mails"
|
(:discard (:tag ("periodic" "birthday")))))
|
||||||
:tag "mail"
|
|
||||||
:order 10)
|
|
||||||
(:name "Errands"
|
|
||||||
:tag ("errand" "call")
|
|
||||||
:order 10)))
|
|
||||||
:config
|
:config
|
||||||
(org-super-agenda-mode))
|
(org-super-agenda-mode))
|
||||||
;; Add timestamp to DONE task
|
;; Add timestamp to DONE task
|
||||||
|
|
Loading…
Reference in New Issue