]> gitweb.michael.orlitzky.com - emacs.d.git/blob - mode-hooks/haskell-mode-hooks.el
Set the haskell-mode indentation level to 2.
[emacs.d.git] / mode-hooks / haskell-mode-hooks.el
1 (defun hm-hook()
2 (turn-on-haskell-doc-mode)
3 (turn-on-haskell-indent)
4 (setq haskell-indent-level 2)
5
6 ;; Make the symbols pretty, and crap all over performance.
7 (setq haskell-font-lock-symbols t)
8 )
9
10 (add-hook 'haskell-mode-hook 'hm-hook)