From 3714176feca019a55595ca11e45888fa26b69a20 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Wed, 3 Nov 2021 22:04:42 +0100 Subject: [PATCH] Org capture template for work --- config.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.org b/config.org index c63df68..159fbf5 100644 --- a/config.org +++ b/config.org @@ -1003,6 +1003,8 @@ Define org-capture templates. (setq org-capture-templates '(("t" "Normal task" entry (file "~/org/inbox.org") "* TODO %?\n :PROPERTIES:\n :CREATED: %U\n :END:") + ("w" "Work task" entry (file "~/org/work.inbox.org") + "* TODO %?\n :PROPERTIES:\n :CREATED: %U\n :END:") ("e" "E-Mail needing a reply" entry (file "~/org/emails.org") "* TODO Reply: %a\n :PROPERTIES:\n :CREATED: %U\n :END:" :immediate-finish t)