diff options
author | noa | 2024-11-11 11:59:22 +0800 |
---|---|---|
committer | noa | 2024-11-11 11:59:22 +0800 |
commit | 6e5834e16c7e1f3a18b0f8405314030bc6d172fd (patch) | |
tree | ac257851f69106393371c2182a57b3e0230471d9 | |
parent | 058730577029e1d78b8ffab43359ce6fe89c74ac (diff) |
Install which-key
-rw-r--r-- | emacs/init.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index dced0e3..04119dd 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -106,6 +106,7 @@ proced-mode-hook rmail-summary-mode-hook ebib-index-mode-hook + which-key-init-buffer-hook ebib-entry-mode-hook))) (use-package transient @@ -813,3 +814,10 @@ The misspelled word is taken from OVERLAY. WORD is the corrected word." ;; (profiler-stop) + +(use-package which-key + :ensure t + :custom + (which-key-mode t)) + + |