mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
13 lines
439 B
EmacsLisp
13 lines
439 B
EmacsLisp
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
;;; lang/haskell/doctor.el
|
|
|
|
(assert! (or (not (featurep! +lsp))
|
|
(featurep! :tools lsp))
|
|
"This module requires (:tools lsp)")
|
|
|
|
(when (featurep! +dante)
|
|
(unless (executable-find "cabal")
|
|
(warn! "Couldn't find cabal, haskell-mode may have issues"))
|
|
(unless (executable-find "hlint")
|
|
(warn! "Couldn't find hlint. Flycheck may have issues in haskell-mode")))
|