summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2015-11-05 23:07:55 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2015-11-05 23:07:55 +0000
commit285558636c0b639684a71fde2989e21567273fe0 (patch)
treeb78904a8483b328cc19049917f4489222a062015
parent4595efeb4bd3b442a5451f27d6a81735bdeef844 (diff)
downloaddotfiles-285558636c0b639684a71fde2989e21567273fe0.tar
dotfiles-285558636c0b639684a71fde2989e21567273fe0.tar.gz
dotfiles-285558636c0b639684a71fde2989e21567273fe0.tar.bz2
dotfiles-285558636c0b639684a71fde2989e21567273fe0.tar.xz
dotfiles-285558636c0b639684a71fde2989e21567273fe0.zip
*poke*
-rw-r--r--.emacs25
1 files changed, 9 insertions, 16 deletions
diff --git a/.emacs b/.emacs
index 763e888..f16384c 100644
--- a/.emacs
+++ b/.emacs
@@ -66,22 +66,15 @@ Return a list of installed packages or nil for every skipped package."
66 kept-old-versions 2 66 kept-old-versions 2
67 version-control t) 67 version-control t)
68 68
69;; (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation) 69(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
70(eval-after-load "haskell-mode" 70(eval-after-load "haskell-mode"
71 '(progn 71 '(progn
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 74 (setq haskell-font-lock-symbols nil)
75(add-hook 'haskell-mode-hook 75 (custom-set-faces
76 (setq haskell-font-lock-symbols nil) 76 '(font-lock-type-face ((t (:foreground "PaleGreen" :weight bold))))
77 ) 77 '(font-lock-function-face ((t (:foreground "LightSkyBlue" :weight bold))))
78 ) 78 )
79(add-hook 'haskell-mode-hook 79 )
80 (custom-set-faces 80 )
81 '(font-lock-type-face ((t (:foreground "PaleGreen" :weight bold))))
82 '(font-lock-function-face ((t (:foreground "LightSkyBlue" :weight bold))))
83 )
84 )
85(add-hook 'haskell-mode-hook
86 'haskell-indentation-mode
87 )