mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
12 lines
398 B
EmacsLisp
12 lines
398 B
EmacsLisp
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
;;; lang/clojure/doctor.el
|
|
|
|
(when (and (modulep! :checkers syntax)
|
|
(modulep! -lsp))
|
|
(unless (executable-find "clj-kondo")
|
|
(warn! "Couldn't find clj-kondo. flycheck-clj-kondo will not work.")))
|
|
|
|
(when (modulep! :editor format)
|
|
(unless (executable-find "cljfmt")
|
|
(warn! "Couldn't find cljfmt. Formatting will be disabled.")))
|