Add org-roam doctor check for the dot executable

This commit is contained in:
yoavm448 2020-05-08 14:06:54 +03:00
parent ab0d37776b
commit 0d821f4ebd

View file

@ -4,3 +4,7 @@
(when (featurep! +gnuplot) (when (featurep! +gnuplot)
(unless (executable-find "gnuplot") (unless (executable-find "gnuplot")
(warn! "Couldn't find gnuplot. org-plot/gnuplot will not work"))) (warn! "Couldn't find gnuplot. org-plot/gnuplot will not work")))
(when (featurep! +roam)
(unless (executable-find "dot")
(warn! "Couldn't find the dot executable (from graphviz). org-roam will not be able to generate graph visuallizations.")))