mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Personally I find orderless is giving me better results than prescient when fuzzy/flex matching is enabled. Hence the switch to orderless. I also split the modules apart to ensure, that selectrum, vertico, prescient and orderless can be mixed and matched however and work correctly. And the switch from to vertico from selectrum is mostly cause I like it's wraparound/cycle feature, where end/beginning of the candidate list will wrap around.
21 lines
408 B
EmacsLisp
21 lines
408 B
EmacsLisp
;;; siren-company-prescient.el --- jimeh's Emacs Siren: company-prescient configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for company-prescient.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-company)
|
|
(require 'siren-prescient)
|
|
|
|
(use-package company-prescient
|
|
:defer t
|
|
:after (prescient company)
|
|
|
|
:config
|
|
(company-prescient-mode +1))
|
|
|
|
(provide 'siren-company-prescient)
|
|
;;; siren-company-prescient.el ends here
|