From 773dfe1f180954680961ed95c474c977864e33ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20K=C3=BChling?= Date: Thu, 12 May 2011 22:43:56 +0200 Subject: [PATCH] emacs: make programming language comments colored by default --- emacs/files/site-start.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/emacs/files/site-start.el b/emacs/files/site-start.el index c020cef..d5ae644 100644 --- a/emacs/files/site-start.el +++ b/emacs/files/site-start.el @@ -20,3 +20,6 @@ ;; or tmm-menubar (menu-bar-mode 0) +;; For some reason emacs 23.2 does not come with colored comments by default +;; we fix this here (todo: chose a better color?) +(set-face-foreground 'font-lock-comment-face "blue")