From 6aa033eb7c02bb3013d95585868a45e139e622db Mon Sep 17 00:00:00 2001 From: rush Date: Tue, 30 Jun 2026 11:16:30 -0400 Subject: [PATCH] Add custom agenda to view completed first-level entries --- config.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index aa6deb8..c91ed2a 100644 --- a/config.org +++ b/config.org @@ -297,10 +297,14 @@ Sly really doesn't play well with elodc in the minibuffer, so here are some sett (defvar *re/org-agenda-waiting* '(todo "WAITING" ((org-agenda-overriding-header "")))) +(defvar *re/org-agenda-done* + '(tags "-recurring+LEVEL=1/DONE|BELAYED|GIVEN")) + (setq org-agenda-custom-commands `(("i" "Inbox" ,@*re/org-agenda-inbox*) ("n" "Next Actions" ,@*re/org-agenda-todo*) ("u" "Undertakings" ,@*re/org-agenda-undertakings*) - ("w" "Waiting" ,@*re/org-agenda-waiting*))) + ("w" "Waiting" ,@*re/org-agenda-waiting*) + ("d" "Done" ,@*re/org-agenda-done*))) #+END_SRC **** Capture Templates #+BEGIN_SRC emacs-lisp -- 2.39.5