summaryrefslogtreecommitdiff
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-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