]> gitweb.michael.orlitzky.com - emacs.d.git/blob - mode-hooks/haskell-mode-hooks.el
Added the haskell-mode hooks to enable documen/indentation.
[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
5 ;; Make the symbols pretty, and crap all over performance.
6 ;;(setq haskell-font-lock-symbols t)
7 )
8
9 (add-hook 'haskell-mode-hook 'hm-hook)