]> git.earman.xyz Git - emacsinit.git/commitdiff
Add tag groups, disable hl-line-mode in agenda
authorrearman <rearman@r717.net>
Thu, 28 May 2026 12:33:53 +0000 (08:33 -0400)
committerrearman <rearman@r717.net>
Thu, 28 May 2026 12:33:53 +0000 (08:33 -0400)
config.org

index 27f1fee647d6eb3cbe9b0a0f0999eec0e6ffff0c..e87f046decdb192e965cdb586869a85545dd110c 100644 (file)
@@ -278,7 +278,7 @@ Sly really doesn't play well with elodc in the minibuffer, so here are some sett
 **** Agenda and Capture
 ***** Agenda settings
 #+BEGIN_SRC emacs-lisp
-(add-hook 'org-agenda-mode-hook #'hl-line-mode)
+;; (add-hook 'org-agenda-mode-hook #'hl-line-mode)
 
 (setq org-agenda-files (append '("~/org/")
                         (file-expand-wildcards "~/projects/*/")
@@ -287,9 +287,11 @@ Sly really doesn't play well with elodc in the minibuffer, so here are some sett
                           (org-agenda-files :maxlevel . 9))
       org-refile-use-outline-path 'file
       org-refile-allow-creating-parent-nodes 'confirm
-      org-tag-alist '(("call" . ?c)
+      org-tag-alist '((:startgroup)
+                     ("call" . ?c)
                      ("email" . ?e)
                      ("errand" . ?r)
+                     (:endgroup)
                      ("jobpc" . ?j)
                      ("license" . ?l))
       org-todo-keywords '((sequence "TODO(t)" "WAITING(w@)" "|" "DONE(d)" "BELAYED(b@)" "GIVEN(g@)")