2019-10-25 22:13:01 +13:00
|
|
|
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
|
|
;;; lang/org/doctor.el
|
|
|
|
|
|
|
|
(when (featurep! +gnuplot)
|
|
|
|
(unless (executable-find "gnuplot")
|
|
|
|
(warn! "Couldn't find gnuplot. org-plot/gnuplot will not work")))
|
2020-05-08 14:06:54 +03:00
|
|
|
|
|
|
|
(when (featurep! +roam)
|
2020-07-29 09:50:22 +07:00
|
|
|
(unless (executable-find "sqlite3")
|
|
|
|
(warn! "Couldn't find the sqlite3 executable. org-roam will not work."))
|
2020-05-08 14:06:54 +03:00
|
|
|
(unless (executable-find "dot")
|
|
|
|
(warn! "Couldn't find the dot executable (from graphviz). org-roam will not be able to generate graph visuallizations.")))
|