mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
These modules were renamed so we can later generalize their implementations, such as adding flymake support to the syntax checker.
10 lines
286 B
EmacsLisp
10 lines
286 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; checkers/spell/packages.el
|
|
|
|
(package! flyspell-correct)
|
|
(cond ((featurep! :completion ivy)
|
|
(package! flyspell-correct-ivy))
|
|
((featurep! :completion helm)
|
|
(package! flyspell-correct-helm))
|
|
((package! flyspell-correct-popup)))
|