d12frosted/flyspell-correct@dea1290 -> d12frosted/flyspell-correct@6d603a1 flycheck/flycheck@c02cd77 -> flycheck/flycheck@cd8e0a2 ideasman42/emacs-spell-fu@e94d01c -> ideasman42/emacs-spell-fu@a7db587
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 "6d603a1dc51918f7f8aaf99dd5443f74a0afc794")
|
|
(cond ((featurep! :completion ivy)
|
|
(package! flyspell-correct-ivy))
|
|
((featurep! :completion helm)
|
|
(package! flyspell-correct-helm))
|
|
((package! flyspell-correct-popup)))
|
|
(package! flyspell-lazy :pin "3ebf68cc9eb10c972a2de8d7861cbabbbce69570"))
|