From b40edbb72f91580826d4ca8ff8bf6433e4f61660 Mon Sep 17 00:00:00 2001 From: rush Date: Tue, 7 Jul 2026 10:52:56 -0400 Subject: [PATCH] Capture templates to add a line before Too bunched up in the files --- init.el | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/init.el b/init.el index a681510..20e3e8e 100644 --- a/init.el +++ b/init.el @@ -265,30 +265,36 @@ ;; Capture Templates - (setq org-capture-templates '(("i" "Inbox" entry +(setq org-capture-templates '(("i" "Inbox" entry (file "inbox.org") "* %^{Description}\n%U\n%?" - :prepend t) + :prepend t + :empty-lines-before 1) ("n" "Next Action" entry (file "next.org") "* TODO %^{Description}\nTaken: %T\n%?" - :prepend t) + :prepend t + :empty-lines-before 1) ("u" "Undertaking" entry (file "undertakings.org") "* %^{Description} [/]\nTaken: %T\n%?" - :prepend t) + :prepend t + :empty-lines-before 1) ("m" "Meeting" entry (file "meetings.org") "* %^{Description}\n%^{Scheduled:}T\n%?" - :prepend t) + :prepend t + :empty-lines-before 1) ("p" "Phone Call" entry (file "inbox.org") "* %^{Description} :call:\n%T\n%?" - :prepend t) + :prepend t + :empty-lines-before 1) ("t" "Note" entry (file "notes.org") "* %^{Description}\n%U\n%?" - :prepend t))) + :prepend t + :empty-lines-before 1))) ;; IDs -- 2.39.5