diff --git a/user/app/doom-emacs/config.el b/user/app/doom-emacs/config.el index f5919f7a..2deeae90 100644 --- a/user/app/doom-emacs/config.el +++ b/user/app/doom-emacs/config.el @@ -920,6 +920,11 @@ tasks." (setq org-super-agenda-groups '(;; Each group has an implicit boolean OR operator between its selectors. + (:name " Overdue" ; Optionally specify section name + :scheduled past + :order 2 + :face 'error) + (:name "Personal" :and(:file-path "Personal.p" :not (:tag "event")) :order 3) @@ -962,6 +967,7 @@ tasks." :scheduled today :order 1 :face 'warning) + )) (org-super-agenda-mode t) diff --git a/user/app/doom-emacs/doom.org b/user/app/doom-emacs/doom.org index 78ec7fe8..d12bfc48 100644 --- a/user/app/doom-emacs/doom.org +++ b/user/app/doom-emacs/doom.org @@ -1078,6 +1078,11 @@ On Wayland, EAF doesn't work. (setq org-super-agenda-groups '(;; Each group has an implicit boolean OR operator between its selectors. + (:name " Overdue" ; Optionally specify section name + :scheduled past + :order 2 + :face 'error) + (:name "Personal" :and(:file-path "Personal.p" :not (:tag "event")) :order 3) @@ -1120,6 +1125,7 @@ On Wayland, EAF doesn't work. :scheduled today :order 1 :face 'warning) + )) (org-super-agenda-mode t)