All you need do is copy the following lisp code into your ~/.emacs file (/home/your-username/.emacs). If you do not have a ~/.emacs file simply create one.
;; Turn on font-lock (fontification) in all modes that support it
(if (fboundp 'global-font-lock-mode)
(global-font-lock-mode t))
(setq font-lock-maximum-decoration t)
(global-font-lock-mode t)
|
|