16 lines
414 B
EmacsLisp
16 lines
414 B
EmacsLisp
;;; lang/haskell/config.el -*- lexical-binding: t; -*-
|
|
|
|
(cond ((featurep! +intero) (load! "+intero"))
|
|
((featurep! +dante) (load! "+dante")))
|
|
|
|
;;
|
|
;; Common plugins
|
|
;;
|
|
|
|
(def-package! hindent
|
|
:hook (haskell-mode . hindent-mode))
|
|
|
|
(after! haskell-mode
|
|
(set-repl-handler! '(haskell-mode haskell-cabal-mode literate-haskell-mode) #'+haskell-repl-buffer)
|
|
(add-to-list 'completion-ignored-extensions ".hi"))
|
|
|