mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
I'm not fully convinced with swapping out ido with selectrum, so I'll add the configuration for both, without actually loading them, and instead manually try them out from time to time. Also, make ivy use prescient for filtering and sorting, as it does a much better job than ivy itself does by default. But nothing currently uses ivy either, so it's more for future if I start using ivy somewhere.
27 lines
550 B
EmacsLisp
27 lines
550 B
EmacsLisp
;;; siren-selectrum.el --- jimeh's Emacs Siren: selectrum configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for selectrum.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-prescient)
|
|
|
|
(use-package selectrum
|
|
:straight (:host github :repo "raxod502/selectrum")
|
|
|
|
:config
|
|
(selectrum-mode +1))
|
|
|
|
(use-package selectrum-prescient
|
|
:straight (:host github :repo "raxod502/prescient.el"
|
|
:files ("selectrum-prescient.el"))
|
|
:after (selectrum)
|
|
|
|
:config
|
|
(selectrum-prescient-mode +1))
|
|
|
|
(provide 'siren-selectrum)
|
|
;;; siren-selectrum.el ends here
|