summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-03-14 13:53:29 +0100
committerRicardo Wurmus <rekado@elephly.net>2023-03-14 13:53:29 +0100
commit5895727873a42c45006a30cd2c01fd15d4dfc691 (patch)
tree41bcf0c0faea35a71be6576c64234e25e2ca7dab
parente269e8ef6da0139e050320f28eb31c9da483d414 (diff)
Match any part of a selection in any order.
-rw-r--r--init.org11
1 files changed, 11 insertions, 0 deletions
diff --git a/init.org b/init.org
index 637b8ab..2233674 100644
--- a/init.org
+++ b/init.org
@@ -133,6 +133,17 @@ Display more information for vertico choices.
(marginalia-mode))
#+END_SRC
+Match any part in any order.
+
+#+BEGIN_SRC elisp
+(use-package orderless
+ :ensure t
+ :custom
+ (completion-styles '(orderless basic))
+ (completion-category-overrides
+ '((file (styles basic partial-completion)))))
+#+END_SRC
+
Also tell Emacs that I want to have a separate file for all other customisations that are handled through =M-x customize=.
,#+BEGIN_SRC elisp