Update .emacs.d/config.org
This commit is contained in:
parent
8e83ef53da
commit
a93b3601b1
1 changed files with 3 additions and 3 deletions
|
@ -129,8 +129,7 @@ I use vertico as my completion framework. It's minimal, fast and tells me all I
|
||||||
(setq vertico-resize t)
|
(setq vertico-resize t)
|
||||||
|
|
||||||
;; Optionally enable cycling for `vertico-next' and `vertico-previous'.
|
;; 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.
|
;; Persist history over Emacs restarts. Vertico sorts by history position.
|
||||||
(use-package savehist
|
(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.
|
;; useful beyond Vertico.
|
||||||
(setq read-extended-command-predicate #'command-completion-default-include-p))
|
(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
|
(use-package orderless
|
||||||
:init
|
:init
|
||||||
;; Configure a custom style dispatcher (see the Consult wiki)
|
;; 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-defaults nil
|
||||||
completion-category-overrides '((file (styles partial-completion)))))
|
completion-category-overrides '((file (styles partial-completion)))))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** which-key
|
*** which-key
|
||||||
|
|
||||||
which-key is a nice little package that allows to have a minibuffer showing which keybinds are available under prefixes.
|
which-key is a nice little package that allows to have a minibuffer showing which keybinds are available under prefixes.
|
||||||
|
|
Loading…
Reference in a new issue