Tweak org tags

This commit is contained in:
Nathan McCarty 2022-09-26 23:03:03 -04:00
parent c52634183b
commit c948b9633a
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
2 changed files with 6 additions and 2 deletions

View File

@ -424,7 +424,9 @@ independent key tables."
(setq org-agenda-dim-blocked-tasks nil)) (setq org-agenda-dim-blocked-tasks nil))
(after! org (after! org
(setq org-tag-alist '(("proj" . ?p)))) (setq org-tag-alist '(("proj" . ?p)
("complaint" . ?c)
("work" . ?w))))
(after! org (after! org
(add-to-list 'org-modules 'org-habit)) (add-to-list 'org-modules 'org-habit))

View File

@ -561,7 +561,9 @@ Not only does this feature have performance issues, its not useful with how I us
** Set tags alist ** Set tags alist
#+begin_src emacs-lisp #+begin_src emacs-lisp
(after! org (after! org
(setq org-tag-alist '(("proj" . ?p)))) (setq org-tag-alist '(("proj" . ?p)
("complaint" . ?c)
("work" . ?w))))
#+end_src #+end_src
** Modules configuration ** Modules configuration
*** org habits *** org habits