diff options
Diffstat (limited to '.config/emacs/modules/mm-keybindings.el')
-rw-r--r-- | .config/emacs/modules/mm-keybindings.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-keybindings.el b/.config/emacs/modules/mm-keybindings.el index 56a7f63..e3df839 100644 --- a/.config/emacs/modules/mm-keybindings.el +++ b/.config/emacs/modules/mm-keybindings.el @@ -109,4 +109,14 @@ the first command is remapped to the second command." "d" #'decrement-number-at-point "i" #'increment-number-at-point)) + +;;; Display Available Keybindings + +(use-package which-key + :hook after-init + :custom + (which-key-dont-use-unicode nil) + (which-key-ellipsis "…") + (wihch-key-idle-delay .5)) + (provide 'mm-keybindings) |