From 80b3e4dbc16e0ed8b3fbc314366c733d1a208d3c Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Tue, 27 May 2025 11:49:59 +0200 Subject: [PATCH] feat: enable vertico-cycle and call hook when appropriate --- config.org | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/config.org b/config.org index cb19b82..55f545b 100644 --- a/config.org +++ b/config.org @@ -322,15 +322,14 @@ C-c C-c to apply." ** Minibuffer #+BEGIN_SRC emacs-lisp -;; Enable vertico (use-package vertico - ;; :custom + :custom ;; (vertico-scroll-margin 0) ;; Different scroll margin ;; (vertico-count 20) ;; Show more candidates ;; (vertico-resize t) ;; Grow and shrink the Vertico minibuffer - ;; (vertico-cycle t) ;; Enable cycling for `vertico-next/previous' - :init - (vertico-mode)) + (vertico-cycle t) ;; Enable cycling for `vertico-next/previous' + :hook (after-init . vertico-mode) + ) #+END_SRC ** Consult