19 lines
529 B
EmacsLisp
19 lines
529 B
EmacsLisp
;;; lang/haskell/+dante.el -*- lexical-binding: t; -*-
|
|
;;;###if (featurep! +dante)
|
|
|
|
(def-package! dante
|
|
:after haskell-mode
|
|
:hook (haskell-mode . dante-mode)
|
|
:config
|
|
(add-hook 'haskell-mode-hook #'interactive-haskell-mode)
|
|
(add-hook 'dante-mode-hook #'flycheck-mode))
|
|
|
|
|
|
(def-package! company-ghc
|
|
:when (featurep! :completion company)
|
|
:after haskell-mode
|
|
:init
|
|
(add-hook 'haskell-mode-hook #'ghc-comp-init)
|
|
:config
|
|
(setq company-ghc-show-info 'oneline)
|
|
(set! :company-backend 'haskell-mode #'company-ghc))
|