mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 11:06:17 +00:00
[emacs] Add which-key mode
This commit is contained in:
parent
d464261192
commit
66997f71b9
1 changed files with 11 additions and 0 deletions
|
@ -53,6 +53,17 @@ Display major-mode names as icons in the mode line when possible.
|
||||||
:ensure t
|
:ensure t
|
||||||
:config (mode-icons-mode))
|
:config (mode-icons-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
** Which-Key
|
||||||
|
Display key binding completions after a delay.
|
||||||
|
#+name: look-and-feel
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package which-key
|
||||||
|
:ensure t
|
||||||
|
:diminish which-key-mode
|
||||||
|
:config
|
||||||
|
(which-key-setup-side-window-right-bottom)
|
||||||
|
(which-key-mode))
|
||||||
|
#+END_SRC
|
||||||
** Helm
|
** Helm
|
||||||
#+name: packages
|
#+name: packages
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
|
Loading…
Reference in a new issue