From b2f92905524c8262f8d2c8163ad58d97eab0c203 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Mon, 23 Sep 2024 10:48:10 +0200 Subject: emacs: Configure which-key --- .config/emacs/init.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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)) -- cgit v1.2.3