mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 11:06:17 +00:00
[emacs] Replace guide-key with which-key
Which-key provides the same functionality, with a nicer interface.
This commit is contained in:
parent
5376e9000d
commit
23d8729278
1 changed files with 4 additions and 6 deletions
|
@ -91,15 +91,13 @@ Helm projectile integration
|
|||
:ensure t
|
||||
:bind ("C-x o" . ace-window))
|
||||
#+END_SRC
|
||||
** Guide Key
|
||||
** Which Key
|
||||
#+name: packages
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package guide-key
|
||||
(use-package which-key
|
||||
:ensure t
|
||||
:diminish guide-key-mode
|
||||
:config (progn
|
||||
(setq guide-key/guide-key-sequence t)
|
||||
(guide-key-mode 1)))
|
||||
:diminish which-key-mode
|
||||
:config (which-key-mode t))
|
||||
#+END_SRC
|
||||
** Expand Region
|
||||
#+name: packages
|
||||
|
|
Loading…
Reference in a new issue