summaryrefslogtreecommitdiff
path: root/lisp/init-haskell.el
blob: 7e3766bac3b681c79c6949d9a1d971b4b072a5bb (plain)
1
2
3
4
5
6
7
8
9
10

(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
(add-hook 'haskell-mode-hook 'interactive-haskell-mode)
(add-hook 'haskell-mode-hook 'turn-on-haskell-doc)

(after 'haskell-process
  ;; Unbind `haskell-process-cabal' from user's key.
  (define-key interactive-haskell-mode-map (kbd "C-c c") nil))

(provide 'init-haskell)