Uncolorize function definitions

This commit is contained in:
syl20bnr 2014-09-21 21:20:46 -04:00
parent a0f38a328d
commit 64bcd516ee
2 changed files with 5 additions and 2 deletions

View file

@ -305,6 +305,10 @@ changed to THEME."
(_ (setq rainbow-identifiers-cie-l*a*b*-saturation 80
rainbow-identifiers-cie-l*a*b*-lightness 45))))
;; To make the variables stand out, keyword coloring is disabled
;; (set-face-attribute 'highlight-quoted-symbol nil
;; :foreground nil :slant 'normal :weight 'bold)
(set-face-attribute 'font-lock-function-name-face nil
:foreground nil :slant 'normal :weight 'normal)
(set-face-attribute 'font-lock-keyword-face nil
:foreground nil :slant 'normal :weight 'bold))

View file

@ -1375,8 +1375,7 @@ which require an initialization must be listed explicitly in the list."
rainbow-identifiers-cie-l*a*b*-lightness 40
;; override theme faces
rainbow-identifiers-faces-to-override '(highlight-quoted-symbol
font-lock-variable-name-face
font-lock-function-name-face))
font-lock-variable-name-face))
(add-to-hooks 'rainbow-identifiers-mode '(prog-mode-hook
erlang-mode-hook)))
))