;;; 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