Moved vertico config to general packages section
This commit is contained in:
parent
390a7768a2
commit
ad9c8cb112
@ -191,6 +191,36 @@ Command Log Mode creates a window that logs all commands and corresponding keybi
|
|||||||
:init (persp-mode))
|
:init (persp-mode))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
||||||
|
*** Vertico
|
||||||
|
|
||||||
|
Vertico is a package that implements a drop-down like menu in the mini buffer allowing for much better searching.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package vertico
|
||||||
|
:init
|
||||||
|
(vertico-mode))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
One feature of Vertico that is really helpful is that it works with another built-in emacs package, ~savehist~, to save directory history when navigating with Vertico.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package savehist
|
||||||
|
:init
|
||||||
|
(savehist-mode))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
One last feature I will also add is the ~marginalia~ package which adds some nice /footnotes/ to the command information. This can be extra helpful when looking up Elisp functions for example.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package marginalia
|
||||||
|
:after vertico
|
||||||
|
:init
|
||||||
|
(marginalia-mode))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
* Cosmetic
|
* Cosmetic
|
||||||
|
|
||||||
Packages that change the look of Emacs in some way.
|
Packages that change the look of Emacs in some way.
|
||||||
@ -282,38 +312,6 @@ This adds relative line numbers while excluding certain modes.
|
|||||||
(global-display-line-numbers-mode t)
|
(global-display-line-numbers-mode t)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
* Auto-completion
|
|
||||||
|
|
||||||
Packages associated with Emacs auto-completion. This does not include auto-completion from language servers just the auto-completion of commands etc.
|
|
||||||
|
|
||||||
** Vertico
|
|
||||||
|
|
||||||
Vertico is a package that implements a drop-down like menu in the mini buffer allowing for much better searching.
|
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(use-package vertico
|
|
||||||
:init
|
|
||||||
(vertico-mode))
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
One feature of Vertico that is really helpful is that it works with another built-in emacs package, ~savehist~, to save directory history when navigating with Vertico.
|
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(use-package savehist
|
|
||||||
:init
|
|
||||||
(savehist-mode))
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
One last feature I will also add is the ~marginalia~ package which adds some nice /footnotes/ to the command information. This can be extra helpful when looking up Elisp functions for example.
|
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(use-package marginalia
|
|
||||||
:after vertico
|
|
||||||
:init
|
|
||||||
(marginalia-mode))
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
|
|
||||||
* Keybindings
|
* Keybindings
|
||||||
|
|
||||||
Contains the configuration for any keybindings or packages relating to keybindings.
|
Contains the configuration for any keybindings or packages relating to keybindings.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user