mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
+ :eval => set-eval-handler! + :repl => set-repl-handler! + Updates all internal references.
15 lines
307 B
EmacsLisp
15 lines
307 B
EmacsLisp
;;; lang/haskell/config.el -*- lexical-binding: t; -*-
|
|
|
|
(cond ((featurep! +intero) (load! "+intero"))
|
|
((featurep! +dante) (load! "+dante")))
|
|
|
|
|
|
;;
|
|
;; Common plugins
|
|
;;
|
|
|
|
(after! haskell-mode
|
|
(set-repl-handler! 'haskell-mode #'switch-to-haskell)
|
|
(add-to-list 'completion-ignored-extensions ".hi"))
|
|
|