diff options
author | Case Duckworth | 2022-01-31 00:54:05 -0600 |
---|---|---|
committer | Case Duckworth | 2022-01-31 00:54:05 -0600 |
commit | 8f3631016d6a359c3657609b0859b1dbb4b02eef (patch) | |
tree | 92c56f4769ad42a95e7f2dadd3982468147bfc8f /init.el | |
parent | Change tab-bar display (diff) | |
download | emacs-8f3631016d6a359c3657609b0859b1dbb4b02eef.tar.gz emacs-8f3631016d6a359c3657609b0859b1dbb4b02eef.zip |
Add an org-capture template
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 8 |
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")) |