]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix this correctly
authorBrian West <brian@freeswitch.org>
Fri, 5 Dec 2008 17:06:37 +0000 (17:06 +0000)
committerBrian West <brian@freeswitch.org>
Fri, 5 Dec 2008 17:06:37 +0000 (17:06 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10620 d0543943-73ff-0310-b7d9-9358b9ac24b2

rootkit-d/.emacs

index d70decded27bb8905da622054d7bde442cf4b4b5..2fa7cb24bb6fbc837c9df90658c6dc3850f1c042 100644 (file)
 
 
 
+(cond ((fboundp 'global-font-lock-mode)
+       ;; Customize face attributes
+       (setq font-lock-face-attributes
+             ;; Symbol-for-Face Foreground Background Bold Italic Underline
+             '((font-lock-comment-face       "DarkGreen")
+              (font-lock-preprocessor-face       "gray")
+               (font-lock-string-face        "Sienna")
+               (font-lock-keyword-face       "purple")
+               (font-lock-function-name-face "limegreen")
+               (font-lock-variable-name-face "Yellow")
+               (font-lock-type-face          "Yellow")
+               ))
+       ;; Load the font-lock package.
+       (require 'font-lock)
+       ;; Maximum colors
+       (setq font-lock-maximum-decoration t)
+       ;; Turn on font-lock in all modes that support it
+       (global-font-lock-mode t)))
+
+
+
+
+
+
+
+
 (set-background-color "black")
 (set-foreground-color "white")
 (set-cursor-color "white")