doomemacs/modules/feature/spellcheck/packages.el

12 lines
300 B
EmacsLisp
Raw Normal View History

2017-02-13 18:51:29 +08:00
;; -*- no-byte-compile: t; -*-
;;; feature/spellcheck/packages.el
(package! flyspell-correct)
(cond ((featurep! :completion ivy)
(package! flyspell-correct-ivy))
((featurep! :completion helm)
(package! flyspell-correct-helm))
(t
(package! flyspell-correct-popup)))
2017-02-13 18:51:29 +08:00