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

  1. ;;; plugin-which-keys --- Summary
  2. ;;; Commentary:
  3. ;;; Code:
  4. (use-package which-key
  5. :ensure t
  6. :diminish which-key-mode
  7. :config
  8. (which-key-mode)
  9. (which-key-setup-side-window-right-bottom)
  10. (which-key-setup-minibuffer)
  11. (setq which-key-idle-delay 0.5))
  12. (provide 'plugin-which-key)
  13. ;;; plugin-which-key ends here