aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/init-haskell-mode.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs/init-haskell-mode.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs/init-haskell-mode.el b/emacs/init-haskell-mode.el
new file mode 100644
index 0000000..6fe75c2
--- /dev/null
+++ b/emacs/init-haskell-mode.el
@@ -0,0 +1,7 @@
+(add-to-list 'load-path "/usr/share/emacs/site-lisp/haskell-mode/")
+(require 'haskell-mode-autoloads)
+(add-to-list 'Info-default-directory-list "/usr/share/emacs/site-lisp/haskell-mode/")
+(add-hook 'haskell-mode-hook
+ (lambda ()
+ (turn-on-haskell-doc)
+ (turn-on-haskell-simple-indent)))