diff options
author | Raúl Benencia <id@rbenencia.name> | 2023-06-23 07:10:49 -0700 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2023-06-23 07:10:49 -0700 |
commit | 94477bb098803510e8c82319b900cbc93cee9b7d (patch) | |
tree | f0155c8424a78a58c539a5f7ceb029b6dc5c5678 /.emacs.local.d/staging.el | |
parent | 638696354ee413d1d37c24cb0f83609a7c199656 (diff) |
emacs: use flex completion
Diffstat (limited to '.emacs.local.d/staging.el')
-rw-r--r-- | .emacs.local.d/staging.el | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/.emacs.local.d/staging.el b/.emacs.local.d/staging.el index 57152bb..7134fc3 100644 --- a/.emacs.local.d/staging.el +++ b/.emacs.local.d/staging.el @@ -153,12 +153,6 @@ ;; package. (marginalia-mode)) -;; Optionally use the `orderless' completion style. -(use-package orderless - :init - ;; Configure a custom style dispatcher (see the Consult wiki) - ;; (setq orderless-style-dispatchers '(+orderless-consult-dispatch orderless-affix-dispatch) - ;; orderless-component-separator #'orderless-escapable-split-on-space) - (setq completion-styles '(orderless basic) - completion-category-defaults nil - completion-category-overrides '((file (styles partial-completion))))) +(setq completion-styles '(flex basic) + completion-category-defaults nil + completion-category-overrides nil) |