diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-14 19:58:22 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-14 19:58:22 -0700 |
commit | 3becb4482407f801bef5af5ba058995c5270e84c (patch) | |
tree | 799552293be5a99980a927ed461a91fa36e7177c /emacs | |
parent | remove more ivy stuff (diff) | |
download | emacs.d-3becb4482407f801bef5af5ba058995c5270e84c.tar.gz |
add orderless
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-completion.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/custom/my-completion.el b/emacs/custom/my-completion.el index 487045b..b4d3b33 100644 --- a/emacs/custom/my-completion.el +++ b/emacs/custom/my-completion.el @@ -14,6 +14,12 @@ (consult-org-heading buffer indexed) (consult-outline buffer indexed)))) +(use-package orderless + :ensure t + :custom + (completion-styles '(orderless basic)) + (completion-category-defaults nil) ) + (use-package marginalia :ensure t :init |