mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 16:57:54 +00:00
13 lines
472 B
EmacsLisp
Executable File
13 lines
472 B
EmacsLisp
Executable File
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
|
;;; tools/wiki/doctor.el
|
|
|
|
(unless (executable-find "sqlite3")
|
|
warn! "Couldn't find SQLite executable. org-roam will not work.")
|
|
|
|
(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."))
|