mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
11 lines
379 B
EmacsLisp
11 lines
379 B
EmacsLisp
;;; checkers/spell/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
(when (or (modulep! -flyspell)
|
|
(modulep! +aspell))
|
|
(unless (executable-find "aspell")
|
|
(warn! "Couldn't find aspell executable; spell checker will not work")))
|
|
|
|
(when (modulep! +hunspell)
|
|
(unless (executable-find "hunspell")
|
|
(warn! "Couldn't find hunspell executable; spell checker will not work")))
|