This provides an alternative backend for filtering and sorting ivy searches. Uses prescient instead of flx for fuzzy completion when both +prescient and +fuzzy are selected.
22 lines
454 B
EmacsLisp
22 lines
454 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; completion/ivy/packages.el
|
|
|
|
(package! amx)
|
|
(package! ivy)
|
|
(package! counsel)
|
|
(package! counsel-projectile)
|
|
(package! swiper)
|
|
(package! ivy-hydra)
|
|
(package! ivy-rich)
|
|
(package! wgrep)
|
|
|
|
(if (featurep! +prescient)
|
|
(package! ivy-prescient)
|
|
(when (featurep! +fuzzy)
|
|
(package! flx)))
|
|
|
|
(when (and EMACS26+ (featurep! +childframe))
|
|
(package! ivy-posframe))
|
|
|
|
(when (featurep! +icons)
|
|
(package! all-the-icons-ivy))
|