summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/init-org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el
index 534b8da..d34355a 100644
--- a/lisp/init-org.el
+++ b/lisp/init-org.el
@@ -26,12 +26,12 @@
;; capture template including title, date and time
(setq org-capture-templates '(("p" "Personal" entry (file+headline "" "Tasks")
- "* TODO %?\n %T"
+ "* TODO %?\n %U"
:prepend t
:empty-lines-after 1)
("w" "Work" entry (file+headline "work.org"
"Tasks")
- "* TODO %?\n %T"
+ "* TODO %?\n %U"
:prepend t
:empty-lines-after 1)))