2021-07-31 23:57:41 +00:00
|
|
|
;;; tools/wiki/doctor.el -*- lexical-binding: t; -*-
|
2021-05-04 15:59:07 +00:00
|
|
|
|
|
|
|
(unless (executable-find "sqlite3")
|
2021-07-31 23:57:41 +00:00
|
|
|
(warn! "Couldn't find SQLite executable."))
|
2021-05-27 11:48:08 +00:00
|
|
|
|
|
|
|
(when (featurep! +biblio)
|
|
|
|
(unless (executable-find "anystyle")
|
2021-07-31 23:57:41 +00:00
|
|
|
(warn! "Couldn't find AnyStyle CLI. The PDF scrapper from org-roam-bibtex will not work."))
|
2021-05-27 11:48:08 +00:00
|
|
|
|
|
|
|
(unless (featurep! :tools biblio)
|
2021-07-31 23:57:41 +00:00
|
|
|
(warn! "Doom module ':tools biblio' is not enabled. Completion functions will not work.")))
|