diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-10-30 21:28:14 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-10-30 21:28:14 +0000 |
commit | 505ef41c306add913442d1b292aa857026376dda (patch) | |
tree | 5213c5c729d377b297a3e4f28ffbeec8a8527818 | |
parent | ad420b635b8b8d76e2430d9580c2ba333cecdc9b (diff) |
fixing tags
Diffstat (limited to '')
-rw-r--r-- | doom.d/config.el | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/doom.d/config.el b/doom.d/config.el index 8ef4bcb..22b6ae1 100644 --- a/doom.d/config.el +++ b/doom.d/config.el @@ -204,21 +204,17 @@ ;; org tags (setq org-tag-alist '( ;; Depth - ("@immersive" . ?i) ;; "Deep" - ("@process" . ?p) ;; "Shallow" - ("@offdesk" . ?o) ;; "Away from desk" + ("immersive" . ?i) ;; "Deep" + ("process" . ?p) ;; "Shallow" + ("offdesk" . ?o) ;; "Away from desk" ;; Type ("brainstorm" . ?b) ("idea" . ?d) ;; Context ("@work" . ?w) ("@home" . ?h) - ("@errand" . ?e) - ("@emacs" . ?E) - ;; Time - ("15min" . ?<) - ("30min" . ?=) - ("1h" . ?>) + ("errand" . ?e) + ("emacs" . ?E) ;; Energy ("Challenge" . ?1) ("Average" . ?2) |