diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-23 09:00:18 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-23 09:00:18 +0200 |
commit | f84a02ea2750108fa13cfcbd7bb191fc5e9bdb61 (patch) | |
tree | 9ef4dbb7688e40883624d8d3350965f495728e04 /.config/emacs/init.el | |
parent | 95991012fd89a3a645eb5753cada8a69526d355e (diff) |
emacs: Use which-key
Diffstat (limited to '.config/emacs/init.el')
-rw-r--r-- | .config/emacs/init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 9069162..76dce8d 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -966,6 +966,11 @@ the comparison of the ‘company-pseudo-tooltip-overlay’ height and 0 using PR :config (evil-define-key 'normal dired-mode-map "n" #'find-file)) +(use-package which-key + :ensure nil + :init + (which-key-mode)) + ;;; Context-Specific Modes (dolist (mode '(c-mode c-ts-mode go-ts-mode)) (add-hook (x-mode-to-hook mode) #'electric-pair-local-mode) |