Skip to content

Instantly share code, notes, and snippets.

@christian-blades-cb
Created May 16, 2019 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christian-blades-cb/f07e6a86f55e72dcfdd3dfa112ff2d7b to your computer and use it in GitHub Desktop.
Save christian-blades-cb/f07e6a86f55e72dcfdd3dfa112ff2d7b to your computer and use it in GitHub Desktop.
org-capture config
(define-key global-map "\C-cc" 'org-capture)
(setq org-capture-templates
'(("t" "Todo" entry (file+headline "~/org/agenda.org" "Tasks")
"* TODO %?\n %i\n %a")
("j" "Journal" entry (file+datetree "~/org/journal.org")
"* %?\nEntered on %U\n %i\n %a")
("m" "TODO from mail" entry (file+headline "~/org/agenda.org" "Email")
"* TODO %?\nref: %a")
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment