]> gitweb.michael.orlitzky.com - emacs.d.git/blobdiff - mode-hooks/haskell-mode-hooks.el
Set the haskell-mode indentation level to 2.
[emacs.d.git] / mode-hooks / haskell-mode-hooks.el
index c44495d7795f0e947d48fdb38ac8c5096891d718..2c28c4cf0e5a71cb494ccd56b2cf2c1638db72eb 100644 (file)
@@ -1,9 +1,10 @@
 (defun hm-hook()
   (turn-on-haskell-doc-mode)
   (turn-on-haskell-indent)
-  
+  (setq haskell-indent-level 2)
+
   ;; Make the symbols pretty, and crap all over performance.
-  ;;(setq haskell-font-lock-symbols t)
+  (setq haskell-font-lock-symbols t)
   )
 
 (add-hook 'haskell-mode-hook 'hm-hook)