I like vertico but I really don’t like orderless or anything like it. I would like to get back the default prefix completion of vanilla emacs but retain vertico for the completion list but I can’t work out how to do this. I have tried all sorts of variations of things like this:
(use-package! orderless
:custom
(completion-styles '(substring basic)))
(use-package! vertico
:config
(keymap-set vertico-map "TAB" #'minibuffer-complete)
)
but I keep getting the, to me, irritating orderless completion whereas I just want beginning-of-string anchored prefix completion to display the maximum match with each tab press, just like when you disable all completion engines in doom emacs init.el. Any help much appreciated.