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