mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 04:57:57 +00:00
861bc01ac0
Now with the graphing feature with org-roam-ui.
12 lines
431 B
EmacsLisp
Executable File
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.")))
|