dotfiles/emacs/modules/tools/wiki/doctor.el
Gabriel Arazas 861bc01ac0 Update org-roam wiki module
Now with the graphing feature with org-roam-ui.
2021-08-09 01:06:34 +08:00

12 lines
431 B
EmacsLisp
Executable File

;;; tools/wiki/doctor.el -*- lexical-binding: t; -*-
(unless (executable-find "sqlite3")
(warn! "Couldn't find SQLite executable."))
(when (featurep! +biblio)
(unless (executable-find "anystyle")
(warn! "Couldn't find AnyStyle CLI. The PDF scrapper from org-roam-bibtex will not work."))
(unless (featurep! :tools biblio)
(warn! "Doom module ':tools biblio' is not enabled. Completion functions will not work.")))