Beef up haskell config

This commit is contained in:
Ivan Malison 2016-09-13 02:51:21 -07:00
parent bc2fa4b3f2
commit dbae14370b
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -2287,9 +2287,29 @@ The following is taken from [[https://github.com/syl20bnr/spacemacs/blob/a650877
:commands haskell-mode
:config
(progn
(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)))
***** Scion
(use-package scion)
(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
(setq haskell-tags-on-save t)))
#+END_SRC
***** hindent
#+BEGIN_SRC emacs-lisp
(use-package hindent
:after haskell-mode
:config
(add-hook 'haskell-mode-hook 'hindent-mode))
#+END_SRC
***** ghc-mod
#+BEGIN_SRC emacs-lisp
(use-package ghc
:after haskell-mode
:config
(add-hook 'haskell-mode-hook 'ghci-nit))
#+END_SRC
***** company-ghc
#+BEGIN_SRC emacs-lisp
(use-package company-ghc
:after ghc
:config
(add-to-list 'company-backend 'company-ghc))
#+END_SRC
*** Data/Config/Protocol
**** thrift