diff options
-rw-r--r-- | .emacs | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -72,9 +72,11 @@ Return a list of installed packages or nil for every skipped package." | |||
72 | (define-key haskell-mode-map (kbd "C-,") 'haskell-move-nested-lift) | 72 | (define-key haskell-mode-map (kbd "C-,") 'haskell-move-nested-lift) |
73 | (define-key haskell-mode-map (kbd "C-.") 'haskell-move-nested-right) | 73 | (define-key haskell-mode-map (kbd "C-.") 'haskell-move-nested-right) |
74 | (setq haskell-font-lock-symbols nil) | 74 | (setq haskell-font-lock-symbols nil) |
75 | (custom-set-faces | ||
76 | '(font-lock-type-face ((t (:foreground "PaleGreen" :weight bold)))) | ||
77 | '(font-lock-function-face ((t (:foreground "LightSkyBlue" :weight bold)))) | ||
78 | ) | ||
79 | ) | 75 | ) |
80 | ) | 76 | ) |
77 | (add-hook 'haskell-mode-hook | ||
78 | (custom-set-faces | ||
79 | '(font-lock-type-face ((t (:foreground "PaleGreen" :weight bold)))) | ||
80 | '(font-lock-function-face ((t (:foreground "LightSkyBlue" :weight bold)))) | ||
81 | ) | ||
82 | ) | ||