mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 10:57:58 +00:00
18 lines
694 B
EmacsLisp
Executable File
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.")))
|