#+BEGIN_SRC emacs-lisp tangle:yes
(setq-default indicate-empty-lines t)
#+END_SRC
+
+Hilight annotations in comments, like FIXME/TODO/...
+#+BEGIN_SRC emacs-lisp tangle:yes
+(add-hook 'prog-mode-hook 'font-lock-comment-annotations)
+#+END_SRC
+
*** Browser
#+BEGIN_SRC emacs-lisp tangle:yes
(setq browse-url-browser-function (quote browse-url-generic))
;(setq org-icalendar-verify-function 'org-mycal-export-limit)
;(org-export-icalendar-combine-agenda-files)
+
+;;;###autoload
+(defun font-lock-comment-annotations ()
+ "Highlight a bunch of well known comment annotations.
+
+This functions should be added to the hooks of major modes for programming."
+ (font-lock-add-keywords
+ nil '(("\\<\\(FIX\\(ME\\)?\\|TODO\\|OPTIMIZE\\|HACK\\|REFACTOR\\):"
+ 1 font-lock-warning-face t))))
+
(provide 'ganneff)
;;; ganneff.el ends here