("p" "Phone call" entry (file "~/org/refile.org")
"* PHONE %? :PHONE:\nAdded: %U"
:clock-in t :clock-resume t)
- ("f" "Firewall request" entry (file+headline "~/org/nsb/dlh.org" "Firewall")
- "* TODO Firewall Request, RT: %?\nAdded: %U"
- :clock-in t :clock-resume t)
- ("i" "Ticket" entry (file+headline "~/org/nsb/dlh.org" "RT Ticket")
- "* TODO RT: %a\nAdded: %U\n\n%?"
- :clock-in t :clock-resume t :jump-to-captured t)
("x" "Bookmark link" entry (file "~/org/refile.org")
"* Bookmark: %c\n%i\nAdded: %U\n"
:immediate-finish t)
** ecb
Emacs Code Browser, see [[http://ecb.sourceforge.net/][ECB - Emacs Code Browser]]
-#+BEGIN_SRC emacs-lisp
+#+BEGIN_SRC emacs-lisp tangle:yes
(load-file "~/elisp/ecb/ecb.el")
(require 'ecb-autoloads)
#+END_SRC
-
+** org-mode
+I want some extra templates for org-capture, which I don't need to
+see at home. (Or want different there).
+#+BEGIN_SRC emacs-lisp tangle:yes
+(nconc org-capture-templates
+ '(
+ ("f" "Firewall request" entry (file+headline "~/org/nsb/dlh.org" "Firewall")
+ "* TODO Firewall Request, RT: %?\nAdded: %U"
+ :clock-in t :clock-resume t)
+ ("i" "Ticket" entry (file+headline "~/org/nsb/dlh.org" "RT Ticket")
+ "* TODO RT: %a\nAdded: %U\n\n%?"
+ :clock-in t :clock-resume t :jump-to-captured t)
+ ("m" "Meeting" entry (file+headline "~/org/nsb/dlh.org" "Meetings")
+ "* TODO %?\nSCHEDULED: %t\nAdded: %U\n"
+ :clock-in t :clock-resume t :jump-to-captured t)
+ ))
+#+END_SRC
* Footnotes