add taskjuggler tags
This commit is contained in:
parent
7c70a0cc3f
commit
3e91003f86
10
conf.org
10
conf.org
|
@ -1474,7 +1474,7 @@ I use tags for agenda filtering (primarily for GTD contexts, see below). Each ta
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq org-tag-alist
|
(setq org-tag-alist
|
||||||
;; (@) gtd location context
|
;; (@) gtd location context
|
||||||
'((:startgroup)
|
`((:startgroup)
|
||||||
("@errand" . ?e)
|
("@errand" . ?e)
|
||||||
("@home" . ?h)
|
("@home" . ?h)
|
||||||
("@work" . ?w)
|
("@work" . ?w)
|
||||||
|
@ -1502,6 +1502,13 @@ I use tags for agenda filtering (primarily for GTD contexts, see below). Each ta
|
||||||
;; catchall to mark important headings, usually for meetings
|
;; catchall to mark important headings, usually for meetings
|
||||||
("%flag" . ?f)
|
("%flag" . ?f)
|
||||||
|
|
||||||
|
;; taskjuggler
|
||||||
|
(:startgroup)
|
||||||
|
(,org-taskjuggler-project-tag . ?x)
|
||||||
|
(,org-taskjuggler-resource-tag . ?y)
|
||||||
|
(,org-taskjuggler-report-tag . ?z)
|
||||||
|
(:endgroup)
|
||||||
|
|
||||||
;; (_) life categories, used for gtd priorities
|
;; (_) life categories, used for gtd priorities
|
||||||
(:startgroup)
|
(:startgroup)
|
||||||
("_env" . ?E) ;; environmental
|
("_env" . ?E) ;; environmental
|
||||||
|
@ -1530,6 +1537,7 @@ Each group also has its own color, defined by its prefix symbol.
|
||||||
(nd/add-tag-face "SkyBlue" "#")
|
(nd/add-tag-face "SkyBlue" "#")
|
||||||
(nd/add-tag-face "PaleGoldenrod" "%")
|
(nd/add-tag-face "PaleGoldenrod" "%")
|
||||||
(nd/add-tag-face "violet" "_")
|
(nd/add-tag-face "violet" "_")
|
||||||
|
(nd/add-tag-face "OrangeRed1" "τ")
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** properties
|
*** properties
|
||||||
The built-in =effort= is used as the fourth and final homonymous GTD context (the other three being covered above using tags). It is further restricted with =Effort_All= to allow easier filtering in the agenda.
|
The built-in =effort= is used as the fourth and final homonymous GTD context (the other three being covered above using tags). It is further restricted with =Effort_All= to allow easier filtering in the agenda.
|
||||||
|
|
Loading…
Reference in New Issue