]> gitweb.michael.orlitzky.com - emacs.d.git/blobdiff - mode-hooks/haskell-mode-hooks.el
Added the haskell-mode hooks to enable documen/indentation.
[emacs.d.git] / mode-hooks / haskell-mode-hooks.el
diff --git a/mode-hooks/haskell-mode-hooks.el b/mode-hooks/haskell-mode-hooks.el
new file mode 100644 (file)
index 0000000..c44495d
--- /dev/null
@@ -0,0 +1,9 @@
+(defun hm-hook()
+  (turn-on-haskell-doc-mode)
+  (turn-on-haskell-indent)
+  
+  ;; Make the symbols pretty, and crap all over performance.
+  ;;(setq haskell-font-lock-symbols t)
+  )
+
+(add-hook 'haskell-mode-hook 'hm-hook)