diff options
| -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 |
