diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2024-08-04 15:40:26 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2024-08-04 15:40:26 +0100 |
| commit | bebf3fee59cfb6dcafd07218eb37d2855190b6dc (patch) | |
| tree | 825ab8b3f74e4ae256aa0f080bf2dd5c583b601d | |
| parent | dda1bbd0ab6b69a39af43fea5f4459e5fc5e37a5 (diff) | |
emacs: Use ‘orderless’ as completion style
| -rw-r--r-- | emacs/init.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index a723f0f..224d203 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -98,6 +98,12 @@ ("C-c s" . consult-ripgrep)) :ensure t) +(use-package orderless + :ensure t + :custom + (completion-category-overrides '((file (styles basic partial-completion)))) + (completion-styles '(orderless basic))) + (use-package vertico :config (vertico-mode 1) :ensure t) (setq completion-ignore-case t |
