Commit 692f84076921

Vincent Demeester <vincent+git@demeester.fr>
2014-06-06 17:32:48
Add org-capture template
1 parent a8f8121
Changed files (1)
.emacs.d
.emacs.d/org.conf.el
@@ -75,6 +75,14 @@
 (add-to-list 'org-speed-commands-user
              '("p" ded/org-show-previous-heading-tidily))
 
+;; Org Capture
+(setq org-capture-templates
+      '(("t" "Todo" entry (file+headline (concat org-directory "/todos/inbox.org") "Tasks")
+         "* TODO %?\n %i\n")
+        ("e" "Eileo" entry (file+headline (concat org-directory "/todos/eileo.org")) "Inbox")
+        ("l" "Link" plain (file+datetree (concat org-directory "/notes/links.org"))
+         "- %?\n %x\n")))
+
 ;; org-archive
 (require 'org-archive)