2017-02-13 05:51:29 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
2020-01-09 18:41:48 -05:00
|
|
|
;;; checkers/spell/packages.el
|
2017-02-13 05:51:29 -05:00
|
|
|
|
2020-08-23 18:48:50 -04:00
|
|
|
(if (not (featurep! +flyspell))
|
2020-10-11 23:32:51 -04:00
|
|
|
(package! spell-fu :pin "a7db58747131dca2eee0e0757c3d254d391ddd1c")
|
2021-02-25 12:12:19 -05:00
|
|
|
(package! flyspell-correct :pin "d19a090b978a249fc8f6d8b14309a5705a6bb483")
|
2020-08-23 18:48:50 -04:00
|
|
|
(cond ((featurep! :completion ivy)
|
|
|
|
(package! flyspell-correct-ivy))
|
|
|
|
((featurep! :completion helm)
|
|
|
|
(package! flyspell-correct-helm))
|
|
|
|
((package! flyspell-correct-popup)))
|
2021-02-25 12:12:19 -05:00
|
|
|
(package! flyspell-lazy :pin "d57382cf06462931cb354f5630469425fce56396"))
|