Skip to content

Instantly share code, notes, and snippets.

@drobati
Created October 21, 2010 16:39
Show Gist options
  • Save drobati/638828 to your computer and use it in GitHub Desktop.
Save drobati/638828 to your computer and use it in GitHub Desktop.
Capture template and bindings

Work

School

Bills

(define-key global-map "\C-cc" 'org-capture)
(setq org-directory "/home/drobati/org")
(setq org-capture-templates
'(("w" "Work Action Item" entry (file+headline "~/org/action.org" "Work")
"* TODO %?\n %i")
("s" "School Action Item" entry (file+headline "~/org/action.org" "School")
"* TODO %?\n %i")
("b" "Bills Action Item" entry (file+headline "~/org/action.org" "Bills")
"* TODO %?\n %i")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment