From 0d821f4ebd0a18dd2a022165d8b1a1f1f3df6796 Mon Sep 17 00:00:00 2001 From: yoavm448 Date: Fri, 8 May 2020 14:06:54 +0300 Subject: [PATCH] Add org-roam doctor check for the dot executable --- modules/lang/org/doctor.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/lang/org/doctor.el b/modules/lang/org/doctor.el index d5fc85e20..412afa510 100644 --- a/modules/lang/org/doctor.el +++ b/modules/lang/org/doctor.el @@ -4,3 +4,7 @@ (when (featurep! +gnuplot) (unless (executable-find "gnuplot") (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.")))