Created
October 2, 2015 12:50
-
-
Save lislon/8328f4a414c1d8756d2c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (setq org-capture-templates | |
| (quote (("t" "todo" entry (file "~/org/refile.org") | |
| "* TODO %?\n%U\n" :clock-in t :clock-resume t) | |
| ("b" "book" entry (file+headline "~/org/todo.org" "Book list") | |
| "* %x %?\n%U\n") | |
| ("m" "movie" entry (file+headline "~/org/todo.org" "Movie list") | |
| "* TODO %?\n%U\n") | |
| ("n" "note" entry (file "~/org/refile.org") | |
| "* %?\n%U\n%x") | |
| ("s" "snippet zsh" entry (file "~/org/refile.org") | |
| "* %?\n#+BEGIN_SRC sh\n%x\n#+END_SRC")))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment