2020-08-21 22:01:50 -04:00
|
|
|
;;; checkers/spell/doctor.el -*- lexical-binding: t; -*-
|
|
|
|
|
2022-08-12 20:29:19 +02:00
|
|
|
(when (or (not (modulep! +flyspell))
|
|
|
|
(modulep! +aspell))
|
2020-08-23 18:48:50 -04:00
|
|
|
(unless (executable-find "aspell")
|
|
|
|
(warn! "Couldn't find aspell executable; spell checker will not work")))
|
2020-08-21 22:01:50 -04:00
|
|
|
|
2022-08-12 20:29:19 +02:00
|
|
|
(when (modulep! +hunspell)
|
2020-08-21 22:01:50 -04:00
|
|
|
(unless (executable-find "hunspell")
|
|
|
|
(warn! "Couldn't find hunspell executable; spell checker will not work")))
|