dotfiles/emacs/modules/tools/wiki/doctor.el
2021-11-16 19:55:36 +08:00

18 lines
694 B
EmacsLisp
Executable File

;;; tools/wiki/doctor.el -*- lexical-binding: t; -*-
(unless (executable-find "sqlite3")
(warn! "Couldn't find SQLite executable."))
(unless (featurep! :lang org)
(warn! "Doom module ':lang org' is not enabled. This is a pointless addition to your configuration WTF"))
(when (featurep! :lang org +roam)
(warn! "org-roam v1 is installed. This module is primarily catered for org-roam v2."))
(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.")))