diff options
Diffstat (limited to 'emacs-config.org')
| -rw-r--r-- | emacs-config.org | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index eefcedc..5a693e6 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -1564,3 +1564,19 @@ move in the tree to go back to previous buffer states. (use-package vundo :bind ("C-x C-/" . vundo)) #+end_src + +** Vertico +https://github.com/minad/vertico + +Vertico provides a performant and minimalistic vertical completion UI based on the default completion system. + +#+begin_src elisp + (use-package vertico + :config + ;; Disable previously used vertical mode + (fido-vertical-mode -1) + (fido-mode -1) + ;; Enable vertico mode + (vertico-mode)) +#+end_src + |
