summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-01-31 00:54:05 -0600
committerCase Duckworth2022-01-31 00:54:05 -0600
commit8f3631016d6a359c3657609b0859b1dbb4b02eef (patch)
tree92c56f4769ad42a95e7f2dadd3982468147bfc8f
parentChange tab-bar display (diff)
downloademacs-8f3631016d6a359c3657609b0859b1dbb4b02eef.tar.gz
emacs-8f3631016d6a359c3657609b0859b1dbb4b02eef.zip
Add an org-capture template
-rw-r--r--init.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/init.el b/init.el index 40678a1..3415d52 100644 --- a/init.el +++ b/init.el
@@ -564,6 +564,14 @@
564 ":CREATED: [%<%F %T>]\n" 564 ":CREATED: [%<%F %T>]\n"
565 ":END:\n" 565 ":END:\n"
566 "\n%?"))) 566 "\n%?")))
567 (+org-capture-templates-setf "tm"
568 `("Media" entry (file "todo.org")
569 ,(concat "* TODO %^{TITLE}\n"
570 ":PROPERTIES:\n"
571 ":TITLE: %\\1\n"
572 ":AUTHOR: %^{AUTHOR}\n"
573 ":END:\n"
574 "\n%?")))
567 (+org-capture-templates-setf "l" 575 (+org-capture-templates-setf "l"
568 `("Link" entry (file "links.org") 576 `("Link" entry (file "links.org")
569 "* %(+org-insert-link-dwim) %^g\n\n")) 577 "* %(+org-insert-link-dwim) %^g\n\n"))