mirror of
https://github.com/doomemacs/doomemacs.git
synced 2025-12-26 11:52:44 -08:00
11 lines
300 B
EmacsLisp
11 lines
300 B
EmacsLisp
;; -*- 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)))
|
|
|