Merge pull request #3907 from mlavaert/develop

Added warning for clang-format in doom doctor.
This commit is contained in:
Henrik Lissner 2020-10-06 17:16:37 -04:00 committed by GitHub
commit d807a7513d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,3 +7,7 @@
(unless (executable-find "javac")
(warn! "Couldn't find the javac executable, are you sure the JDK is installed?"))
(when (featurep! :editor format)
(unless (executable-find "clang-format")
(warn! "Couldn't find clang-format. Code formatting will not work.")))