diff options
Diffstat (limited to '.config/emacs/init.el')
-rw-r--r-- | .config/emacs/init.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index b653728..98ba1b1 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -958,10 +958,16 @@ the comparison of the ‘company-pseudo-tooltip-overlay’ height and 0 using PR :config (evil-define-key 'normal dired-mode-map "n" #'find-file)) +;;; Which-Key (use-package which-key :ensure nil :init - (which-key-mode)) + (which-key-mode) + :custom + (which-key-popup-type 'minibuffer) + (which-key-dont-use-unicode nil) + (which-key-ellipsis "..") + (which-key-idle-delay 0.5)) ;;; Context-Specific Modes (dolist (mode '(c-mode c-ts-mode go-ts-mode)) |