14 lines
281 B
EmacsLisp
14 lines
281 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/haskell/packages.el
|
|
|
|
(package! haskell-mode)
|
|
|
|
;;
|
|
(cond ((featurep! +dante)
|
|
(package! dante)
|
|
(when (featurep! :completion company)
|
|
(package! company-ghc)))
|
|
(t
|
|
(package! intero)
|
|
(package! hindent)))
|
|
|