From 2684b00dd73dd28b406dcd463270ec23093fa7ed Mon Sep 17 00:00:00 2001 From: BardofSprites <89086143+BardofSprites@users.noreply.github.com> Date: Wed, 22 Apr 2026 23:57:43 -0400 Subject: change orderless completion styles --- config.org | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'config.org') diff --git a/config.org b/config.org index 26cef7d..94967d6 100644 --- a/config.org +++ b/config.org @@ -410,9 +410,7 @@ This is an emacs package that allows me to write flashcards in org mode. I talke *** Orderless #+begin_src emacs-lisp :tangle bard-emacs-modules/bard-emacs-completion.el :mkdirp yes (use-package orderless - :ensure t - :config - (setq completion-styles '(orderless basic))) + :ensure t) #+end_src *** Tab completion @@ -464,19 +462,19 @@ For a long time I really struggled with Emacs tab completion. It still only kind (use-package minibuffer :config ;;;; Completion styles - (setq completion-styles '(basic substring initials flex orderless)) + (setq completion-styles '(orderless basic substring initials flex)) (setq completion-category-defaults nil) (setq completion-category-overrides - '((file (styles . (basic partial-completion orderless))) + '((file (styles . (orderless basic partial-completion))) (bookmark (styles . (basic substring))) (library (styles . (basic substring))) (embark-keybinding (styles . (basic substring))) - (imenu (styles . (basic substring orderless))) - (consult-location (styles . (basic substring orderless))) + (imenu (styles . (orderless basic substring))) + (consult-location (styles . (orderless basic substring))) (kill-ring (styles . (emacs22 orderless))) - (eglot (styles . (emacs22 substring orderless)))))) + (eglot (styles . (orderless emacs22 substring)))))) #+end_src *** Minibuffer enhancements -- cgit v1.2.3