mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-01-03 15:52:48 -08:00
10 lines
379 B
EmacsLisp
10 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")))
|