dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit b6b3f80bcd922ac9768f6deea3c4e81d4b3abbcd
parent 03b5083fc0d4bd0027e5d688465fc13bd1b28587
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Sun, 14 Sep 2025 18:03:07 +0200

emacs: org config

Diffstat:
Memacs/config.org | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/emacs/config.org b/emacs/config.org @@ -1787,7 +1787,7 @@ Install Org and require additional components that I use. (org-tag-alist (let ((za/org-tag-energy-levels '((:startgroup) ("deep" . ?h) - ("quick-shallow" . ?l) + ("quick_shallow" . ?l) ("errand" . ?o) ; Errand (anything that involves me being out of the house) (:endgroup))) (za/org-tag-1-3-5 @@ -2265,7 +2265,7 @@ For listing tasks without an energy level - skip if it has an energy level: (let ((skip (save-excursion (org-end-of-subtree t))) (keep nil) (item-tags-without-inherited (let ((org-use-tag-inheritance nil)) (org-get-tags))) - (energy-tag-p (lambda (s) (member s '("deep" "quick-shallow" "errand"))))) + (energy-tag-p (lambda (s) (member s '("deep" "quick_shallow" "errand"))))) (if (cl-some energy-tag-p item-tags-without-inherited) skip keep)))