dotfiles/nixos/hm-modules/emacs/.emacs.d/org/ivy.org
2021-01-18 20:24:07 +01:00

994 B

Ivy

  (use-package ivy
    :straight t
    :config
    (ivy-mode 1)
    ;; (setq ivy-use-virtual-buffers t)
    ;; (setq enable-recursive-minibuffers t)
    )

Ivy Prescient

For fuzzy matching, from the author of selectrum and straight.el. For splitting completion things, separate them with a <SPC>

  (use-package ivy-prescient
    :straight t
    :config
    (ivy-prescient-mode 1))

All The Icons Ivy Rich

Fancy icons for buffer switching

  (use-package all-the-icons-ivy-rich
    :straight t
    :hook (after-init . all-the-icons-ivy-rich-mode))

Counsel

  (use-package counsel
    :straight t
    :config
    (counsel-mode 1))

Ivy Rich

  (use-package ivy-rich
    :straight t
    :config
    (ivy-rich-mode 1))