Set the tag-alist the way I like it
This commit is contained in:
parent
8be96e5795
commit
a87b511eaa
2 changed files with 56 additions and 2 deletions
|
@ -3811,7 +3811,34 @@ Org agenda, in particular, provides commands to filter tasks by tag:
|
|||
(use-package org
|
||||
:ensure nil
|
||||
:config
|
||||
(setq org-tag-alist nil)
|
||||
(setq org-tag-alist
|
||||
'((:startgrouptag)
|
||||
("TaskStatus" . ?S)
|
||||
(:grouptags)
|
||||
("next" . ?x)
|
||||
("waiting" . ?w)
|
||||
("delegated" . ?d)
|
||||
(:endgrouptag)
|
||||
(:startgrouptag)
|
||||
("Writing" . ?W)
|
||||
(:grouptags)
|
||||
("notes" . ?n)
|
||||
("sketch" . ?s)
|
||||
("feedback" . ?f)
|
||||
("actionitems" . ?a)
|
||||
(:endgrouptag)
|
||||
(:startgrouptag)
|
||||
("TaskType" . ?T)
|
||||
(:startgrouptag)
|
||||
("joy" . ?j)
|
||||
("errand" . ?e)
|
||||
("bug" . ?b)
|
||||
("habit" . ?h)
|
||||
("goal" . ?g)
|
||||
(:endgrouptag)
|
||||
("important" . ?i)
|
||||
("refile" . ?r)
|
||||
("future" . ?F)))
|
||||
(setq org-auto-align-tags nil)
|
||||
(setq org-tags-column 0))
|
||||
#+end_src
|
||||
|
|
|
@ -162,7 +162,34 @@
|
|||
(use-package org
|
||||
:ensure nil
|
||||
:config
|
||||
(setq org-tag-alist nil)
|
||||
(setq org-tag-alist
|
||||
'((:startgrouptag)
|
||||
("TaskStatus" . ?S)
|
||||
(:grouptags)
|
||||
("next" . ?x)
|
||||
("waiting" . ?w)
|
||||
("delegated" . ?d)
|
||||
(:endgrouptag)
|
||||
(:startgrouptag)
|
||||
("Writing" . ?W)
|
||||
(:grouptags)
|
||||
("notes" . ?n)
|
||||
("sketch" . ?s)
|
||||
("feedback" . ?f)
|
||||
("actionitems" . ?a)
|
||||
(:endgrouptag)
|
||||
(:startgrouptag)
|
||||
("TaskType" . ?T)
|
||||
(:startgrouptag)
|
||||
("joy" . ?j)
|
||||
("errand" . ?e)
|
||||
("bug" . ?b)
|
||||
("habit" . ?h)
|
||||
("goal" . ?g)
|
||||
(:endgrouptag)
|
||||
("important" . ?i)
|
||||
("refile" . ?r)
|
||||
("future" . ?F)))
|
||||
(setq org-auto-align-tags nil)
|
||||
(setq org-tags-column 0))
|
||||
|
||||
|
|
Loading…
Reference in a new issue