daily pastebin goal
49%
SHARE
TWEET

org-capture.el

a guest Jun 27th, 2018 92 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;;Org Capture
  2. ;;Capture Key Bindings
  3. (global-set-key (kbd "C-c c") 'org-capture)
  4. (define-key global-map "\C-cl" 'org-store-link)
  5.  
  6. (setq org-log-done t)
  7. (setq org-agenda-skip-scheduled-if-done t)
  8.  
  9. ;;Capture Templates
  10. (setq org-capture-templates
  11.       '(("t" "Quick Task" entry (file "~/Dropbox/org/inbox.org") "* TODO %^{Brief Task Description}\nSCHEDULED: %^t\n %^{Additional Details}" :prepend t)
  12.  
  13.     ("n" "Note" entry (file+headline "~/Dropbox/org/life.org" "Notes") "* %^{Title}\n%?" :prepend t)
  14.  
  15.     ("d" "Diary" entry (file+datetree "~/Dropbox/org/diary.org") "** %^{Entry Title}\n%?")
  16.  
  17.     ("l" "Log Time" entry (file+datetree "~/Dropbox/org/time-log.org") "** %T - %^{Activity}")
  18.  
  19.     ("e" "Event" entry (file  "~/Dropbox/org/gcal.org") "* %?\n\n%^T\n\n:PROPERTIES:\n\n:END:\n\n")))
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
 
Top