mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-04-25 22:32:02 -07:00
akermu/emacs-libvterm@056ad74653 -> akermu/emacs-libvterm@a01a2894a1 d12frosted/flyspell-correct@1e7a5a5636 -> d12frosted/flyspell-correct@a5cc88cdee emacs-straight/use-package@c80c883dea -> emacs-straight/use-package@c95bceeada emacsmirror/spell-fu@d465d70126 -> emacsmirror/spell-fu@6c7cdc971d flycheck/flycheck@16b536b031 -> flycheck/flycheck@62570fafbe purcell/package-lint@2dc48e5fb9 -> purcell/package-lint@700fffc163 tumashu/posframe@12f540c9ad -> tumashu/posframe@d93828bf6c tumashu/pyim@64731c213c -> tumashu/pyim@bc85ecc3b2
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 "6c7cdc971d232096ae22c9bdbdcf21cfcdaeb755")
|
|
(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"))
|