diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-23 10:48:10 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-23 10:48:10 +0200 |
commit | b2f92905524c8262f8d2c8163ad58d97eab0c203 (patch) | |
tree | 9184a4717ab4ec9211f2a87f31d6c41f3f65c68e /.config/emacs/init.el | |
parent | 09ba25b7dcd04e4ab76740f2863d72b0cbc8a6d3 (diff) |
emacs: Configure which-key
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)) |