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")
|
|
|
|
(package! flyspell-correct :pin "6d603a1dc51918f7f8aaf99dd5443f74a0afc794")
|
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)))
|
|
|
|
(package! flyspell-lazy :pin "3ebf68cc9eb10c972a2de8d7861cbabbbce69570"))
|