You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
325 B
17 lines
325 B
;;; plugin-which-keys --- Summary
|
|
;;; Commentary:
|
|
|
|
;;; Code:
|
|
|
|
(use-package which-key
|
|
:ensure t
|
|
:diminish which-key-mode
|
|
:config
|
|
(which-key-mode)
|
|
(which-key-setup-side-window-right-bottom)
|
|
(which-key-setup-minibuffer)
|
|
(setq which-key-idle-delay 0.5))
|
|
|
|
(provide 'plugin-which-key)
|
|
|
|
;;; plugin-which-key ends here
|