mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-27 14:23:43 -05:00
22 lines
750 B
EmacsLisp
22 lines
750 B
EmacsLisp
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
;;; lang/java/doctor.el
|
|
|
|
(assert! (or (not (modulep! +lsp))
|
|
(modulep! :tools lsp))
|
|
"This module requires (:tools lsp)")
|
|
|
|
(assert! (or (not (modulep! +tree-sitter))
|
|
(modulep! :tools tree-sitter))
|
|
"This module requires (:tools tree-sitter)")
|
|
|
|
(assert! (or (not (modulep! +tree-sitter))
|
|
(fboundp 'java-ts-mode))
|
|
"Can't find `java-ts-mode'; Emacs 29.1+ is required")
|
|
|
|
(unless (executable-find "javac")
|
|
(warn! "Couldn't find the javac executable, are you sure the JDK is installed?"))
|
|
|
|
(when (modulep! :editor format)
|
|
(unless (executable-find "clang-format")
|
|
(warn! "Couldn't find clang-format. Code formatting will not work.")))
|