mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
docs(plantuml): add graphviz/dot doctor
This commit is contained in:
@ -5,6 +5,9 @@
|
|||||||
;; java
|
;; java
|
||||||
(unless (executable-find "java")
|
(unless (executable-find "java")
|
||||||
(warn! "Couldn't find java. PlantUML preview or syntax checking won't work"))
|
(warn! "Couldn't find java. PlantUML preview or syntax checking won't work"))
|
||||||
|
;; graphviz
|
||||||
|
(unless (executable-find "dot")
|
||||||
|
(warn! "Couldn't find dot. PlantUML will only show outputs for sequence and activity diagrams"))
|
||||||
;; plantuml.jar
|
;; plantuml.jar
|
||||||
(unless (file-exists-p plantuml-jar-path)
|
(unless (file-exists-p plantuml-jar-path)
|
||||||
(warn! "Couldn't find plantuml.jar. Install it with M-x plantuml-download-jar")))
|
(warn! "Couldn't find plantuml.jar. Install it with M-x plantuml-download-jar")))
|
||||||
|
Reference in New Issue
Block a user