From 35102de7f578cca937af0afeb8342a149bcd2d48 Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Thu, 12 Sep 2024 12:45:00 +0200 Subject: [PATCH] REMOVE fido, ADD Vertico Switch from fido to vertico --- config_new.org | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/config_new.org b/config_new.org index f53f9a0..893ccfd 100644 --- a/config_new.org +++ b/config_new.org @@ -55,6 +55,23 @@ ) #+end_src +* Vertico-stack + +** Vertico + +#+BEGIN_SRC emacs-lisp +;; Enable vertico +(use-package vertico + :ensure t + ;; :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)) +#+END_SRC + * General config ** Delete trailing whitespaces @@ -89,15 +106,6 @@ Because I'm lazy, important yes-or-no questions can be answered with y-or-n: (defalias 'yes-or-no-p 'y-or-n-p) #+end_src -** FIDO - -Use Fake-ido as minibuffer completion system, more info here: -https://www.gnu.org/software/emacs/manual/html_node/emacs/Icomplete.html - -#+begin_src emacs-lisp -(fido-vertical-mode 1) -#+end_src - ** Switch windows #+begin_src emacs-lisp