mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-03-09 00:01:45 -07:00
emacsmirror/spell-fu@6c7cdc971d -> emacsmirror/spell-fu@ab256835ea flycheck/flycheck@62570fafbe -> flycheck/flycheck@5c24d1b732 purcell/package-lint@700fffc163 -> purcell/package-lint@1c37329703
15 lines
627 B
EmacsLisp
15 lines
627 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; checkers/spell/packages.el
|
|
|
|
(if (modulep! -flyspell)
|
|
(package! spell-fu
|
|
:recipe (:host github :repo "emacsmirror/spell-fu")
|
|
:pin "ab256835ea9d2c2fe346d0386c7b3acf2700f335")
|
|
(package! flyspell-correct :pin "a5cc88cdee20624fb0989ae227d4499178bb2820")
|
|
(cond ((modulep! :completion ivy)
|
|
(package! flyspell-correct-ivy))
|
|
((modulep! :completion helm)
|
|
(package! flyspell-correct-helm))
|
|
((not (modulep! :completion vertico))
|
|
(package! flyspell-correct-popup)))
|
|
(package! flyspell-lazy :pin "0fc5996bcee20b46cbd227ae948d343c3bef7339"))
|