lang/haskell: add intero support #158

To use dante instead, change `haskell` to `(haskell +dante)` in
~/.emacs.d/init.el.
This commit is contained in:
Henrik Lissner 2017-08-08 19:14:58 +02:00
parent d173ae1ed8
commit 56382f1215
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
4 changed files with 55 additions and 15 deletions

View file

@ -2,7 +2,13 @@
;;; lang/haskell/packages.el
(package! haskell-mode)
(package! dante)
(when (featurep! :completion company)
(package! company-ghc))
;;
(cond ((featurep! +dante)
(package! dante))
(t
(package! intero)
(package! hindent)))