In this question I got to know fic-mode which highlights TODOs and such in c++ mode of emacs. However I couldn't make it auto-enabled; that is, I want it to be enabled as soon as I open a .cpp file. In my .emacs file I have:
(require 'fic-mode)
(add-hook 'c++-mode-hook 'turn-on-fic-mode)
as recommended in the fic-mode.el. This doesn't do the trick. In order to enable the minor mode, I have to hit M-x fic-mode RET and then M-x font-lock-fontify-buffer. Can it be automated?