summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.emacs5
1 files changed, 4 insertions, 1 deletions
diff --git a/.emacs b/.emacs
index 9090532..64268df 100644
--- a/.emacs
+++ b/.emacs
@@ -66,7 +66,7 @@ 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)
@@ -80,3 +80,6 @@ Return a list of installed packages or nil for every skipped package."
80 '(font-lock-function-face ((t (:foreground "LightSkyBlue" :weight bold)))) 80 '(font-lock-function-face ((t (:foreground "LightSkyBlue" :weight bold))))
81 ) 81 )
82 ) 82 )
83(add-hook 'haskell-mode-hook
84 'haskell-indentation-mode
85 )