tweak(org-agenda): edit org super-agenda groups
This commit is contained in:
parent
3e6172d1fe
commit
6eee16462e
23
config.org
23
config.org
|
@ -3605,23 +3605,30 @@ By customizing ~org-super-agenda-groups~ via a let-binding in my custom agenda v
|
|||
((org-super-agenda-groups
|
||||
'((:name "Next/In Progress"
|
||||
:todo ("NEXT" "STRT" "WAIT" "HOLD"))
|
||||
(:discard
|
||||
(:date t
|
||||
:deadline t
|
||||
:scheduled t))
|
||||
(:name "Important"
|
||||
:priority "A"
|
||||
:order 1)
|
||||
(:name "Goals"
|
||||
:tag "goal"
|
||||
:order 9)
|
||||
(:name "Notes to Intake"
|
||||
:tag "notes"
|
||||
:order 10)
|
||||
(:name "Assignments"
|
||||
:tag "assign"
|
||||
:order 2)
|
||||
(:auto-map (lambda (item)
|
||||
(~/org-agenda-section-by-link
|
||||
"Goal: " "goal" item))
|
||||
:order 3)
|
||||
(:auto-map (lambda (item)
|
||||
(~/org-agenda-section-by-link
|
||||
"Area: " "area" item))
|
||||
:order 4))))))))))
|
||||
(:order-multi
|
||||
(3
|
||||
(:auto-map (lambda (item)
|
||||
(~/org-agenda-section-by-link
|
||||
"Goal: " "goal" item)))
|
||||
(:auto-map (lambda (item)
|
||||
(~/org-agenda-section-by-link
|
||||
"Area: " "area" item))))))))))))))
|
||||
#+end_src
|
||||
|
||||
This "overview" agenda command is very nice. It's so nice, in fact, that it's almost always the only agenda view I want to use! Having to go through the dispatcher every time I want to access it is annoying and unnecessary.
|
||||
|
|
Loading…
Reference in a new issue