alexmurray/flycheck-posframe@66b73dd -> alexmurray/flycheck-posframe@24fd9b3 d12frosted/flyspell-correct@6d603a1 -> d12frosted/flyspell-correct@d19a090 flycheck/flycheck@79c9245 -> flycheck/flycheck@01396a5 rolandwalker/flyspell-lazy@3ebf68c -> rolandwalker/flyspell-lazy@d57382c
12 lines
526 B
EmacsLisp
12 lines
526 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; checkers/spell/packages.el
|
|
|
|
(if (not (featurep! +flyspell))
|
|
(package! spell-fu :pin "a7db58747131dca2eee0e0757c3d254d391ddd1c")
|
|
(package! flyspell-correct :pin "d19a090b978a249fc8f6d8b14309a5705a6bb483")
|
|
(cond ((featurep! :completion ivy)
|
|
(package! flyspell-correct-ivy))
|
|
((featurep! :completion helm)
|
|
(package! flyspell-correct-helm))
|
|
((package! flyspell-correct-popup)))
|
|
(package! flyspell-lazy :pin "d57382cf06462931cb354f5630469425fce56396"))
|