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.
18 lines
390 B
EmacsLisp
18 lines
390 B
EmacsLisp
;;; siren-prescient.el --- jimeh's Emacs Siren: prescient configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for prescient.
|
|
|
|
;;; Code:
|
|
|
|
(use-package prescient
|
|
:defer t
|
|
|
|
:custom
|
|
(prescient-filter-method '(literal regexp initialism fuzzy))
|
|
(prescient-save-file (expand-file-name "prescient-save.el" siren-cache-dir)))
|
|
|
|
(provide 'siren-prescient)
|
|
;;; siren-prescient.el ends here
|