summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <fcuny@twitter.com>2019-08-29 16:59:20 -0700
committerFranck Cuny <fcuny@twitter.com>2019-08-29 16:59:20 -0700
commit24a7eda6d56181ba1255b6d080870008f2b6d21b (patch)
tree544ea72dc8b2dc8e25a291d59ae18de199367d44
parent[emacs] giving a try to eshell (diff)
downloademacs.d-24a7eda6d56181ba1255b6d080870008f2b6d21b.tar.gz
[org] drop all my custom templates but one.
one template is enough to capture what ever is going on.  too much
choices makes it less likely i'll use it.
-rw-r--r--emacs.d/custom/fcuny-org.el26
1 files changed, 1 insertions, 25 deletions
diff --git a/emacs.d/custom/fcuny-org.el b/emacs.d/custom/fcuny-org.el
index 9f10720..0ac83ca 100644
--- a/emacs.d/custom/fcuny-org.el
+++ b/emacs.d/custom/fcuny-org.el
@@ -96,31 +96,7 @@
                                (--map (cons it (cons :level 1))))))
 
   (org-capture-templates
-   `(;; templates for personal things only.
-     ("j" "Personal Journal" entry
-      (file+olp+datetree ,(concat org-directory "/journal.org"))
-      "* %U %?\n"
-      :tree-type week)
-     ("w" "Weekly Review" entry
-      (file+olp+datetree ,(concat org-directory "/journal.org"))
-      (file ,(concat fcuny/path-emacs-etc "/weekly_review.org"))
-      :tree-type week :jump-to-captured t)
-
-     ;; templates for work related things only.
-     ("J" "Work Journal" entry
-      (file+olp+datetree ,(concat org-directory "/tw-journal.org"))
-      "* %U %?\n"
-      :tree-type week)
-     ("m" "Meeting" entry
-      (file+olp+datetree ,(concat org-directory "/tw-journal.org"))
-      "* %U %^{TITLE}\n%?"
-      :tree-type week)
-     ("I" "Interview" entry
-      (file+olp+datetree ,(concat org-directory "/tw-journal.org"))
-      (file ,(concat fcuny/path-emacs-etc "/interview.org"))
-      :tree-type week)
-
-     ("t" "task entry" entry
+   `(("t" "task entry" entry
       (file ,org-default-inbox-file )
       "* %?\n:PROPERTIES:\n:CREATED: %U\n:END:\n%i\n\nfrom: %a")))