From a93b3601b1439221b0705b616dce6a875fe1e11b Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Tue, 2 Jul 2024 16:57:27 +0200 Subject: [PATCH] Update .emacs.d/config.org --- private_dot_emacs.d/config.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/private_dot_emacs.d/config.org b/private_dot_emacs.d/config.org index 89af149..27a3bcb 100644 --- a/private_dot_emacs.d/config.org +++ b/private_dot_emacs.d/config.org @@ -129,8 +129,7 @@ I use vertico as my completion framework. It's minimal, fast and tells me all I (setq vertico-resize t) ;; Optionally enable cycling for `vertico-next' and `vertico-previous'. - (setq vertico-cycle t) - ) + (setq vertico-cycle t)) ;; Persist history over Emacs restarts. Vertico sorts by history position. (use-package savehist @@ -164,7 +163,7 @@ I use vertico as my completion framework. It's minimal, fast and tells me all I ;; useful beyond Vertico. (setq read-extended-command-predicate #'command-completion-default-include-p)) - ;; Optionally use the `orderless' completion style. + ;; Optionally use the `orderless' completion style. (use-package orderless :init ;; Configure a custom style dispatcher (see the Consult wiki) @@ -174,6 +173,7 @@ I use vertico as my completion framework. It's minimal, fast and tells me all I completion-category-defaults nil completion-category-overrides '((file (styles partial-completion))))) #+end_src + *** which-key which-key is a nice little package that allows to have a minibuffer showing which keybinds are available under prefixes.