diff options
| author | Blake Romero <blake@blkrom.com> | 2025-10-01 17:49:03 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-10-01 17:49:03 +0100 |
| commit | 4a3376e4aa36bcb58a9e27c9a261327bf3e94ec8 (patch) | |
| tree | a6650b7a697ecf00ecadf111ca280e12136dc309 /emacs-config.org | |
| parent | e7dc14a75a0b933e68c722f17d9722677754d749 (diff) | |
Add Vertico package
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 + |
