org-pretty-entities t)
#+END_SRC
+**** Custom Agenda on Single key
+:PROPERTIES:
+:ID: c921d7e6-63ef-4a89-851a-0f3a122e9fa0
+:END:
+Stolen from [[https://emacs.stackexchange.com/questions/864/how-to-bind-a-key-to-a-specific-agenda-command-list-in-org-mode][Stack Exchange]]
+#+BEGIN_SRC emacs-lisp
+(defun org-agenda-show-custom (&optional arg)
+ "Show my custom agenda."
+ (interactive "P")
+ (org-agenda arg " "))
+
+(add-hook 'org-mode-hook
+ (lambda ()
+ (keymap-set org-mode-map "<f2>" 'org-agenda-show-custom)))
+#+END_SRC
+
*** Templates
:PROPERTIES:
:ID: ab7c773c-5a03-4c7b-be8a-318f2b3fd0db