summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2018-04-27 15:51:17 +0200
committerMartin Polden <mpolden@mpolden.no>2018-04-27 15:51:17 +0200
commitb8667b56c9b02975cc18469a817cfb52212a6485 (patch)
tree7c95765208a366d9c0412716c86efe1837b6ff18
parent08ed120f3a18e37dc309b151aeccd8d7ab0717d3 (diff)
Update capture templates
-rw-r--r--lisp/init-org.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el
index 5a6d484..9c5eadc 100644
--- a/lisp/init-org.el
+++ b/lisp/init-org.el
@@ -28,7 +28,12 @@
(setq org-default-notes-file (expand-file-name "personal.org" org-directory))
;; capture template including title, date and time
- (setq org-capture-templates '(("t" "Task" entry (file+headline "" "Tasks")
+ (setq org-capture-templates '(("p" "Personal" entry (file+headline "" "Tasks")
+ "* TODO %?\n %T\n" :prepend t)
+ ("w" "Work" entry (file+headline
+ (expand-file-name
+ "work.org" org-directory)
+ "Tasks")
"* TODO %?\n %T\n" :prepend t)))
;; automatically mark archived entry as done