org-roam: check for sqlite3 executable in doctor

This commit is contained in:
wedens 2020-07-29 09:50:22 +07:00
parent 9c1a356ada
commit d006f76dea

View file

@ -6,5 +6,7 @@
(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) (when (featurep! +roam)
(unless (executable-find "sqlite3")
(warn! "Couldn't find the sqlite3 executable. org-roam will not work."))
(unless (executable-find "dot") (unless (executable-find "dot")
(warn! "Couldn't find the dot executable (from graphviz). org-roam will not be able to generate graph visuallizations."))) (warn! "Couldn't find the dot executable (from graphviz). org-roam will not be able to generate graph visuallizations.")))