summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-10-21 17:49:17 +0300
committerGravatar Uko Kokņevičs2025-10-21 17:49:17 +0300
commite894a6e2f3b4a371f02118825946069b23fd9fb1 (patch)
tree59f1e7de303ff858ff71126aaa6eedd8cd9b4d45
parentemacs: Bump up minimum to 30.1 (diff)
downloaddotfiles-e894a6e2f3b4a371f02118825946069b23fd9fb1.tar.gz
dotfiles-e894a6e2f3b4a371f02118825946069b23fd9fb1.tar.xz
dotfiles-e894a6e2f3b4a371f02118825946069b23fd9fb1.zip
emacs: Add which-key
-rw-r--r--emacs/.config/emacs/init.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs/.config/emacs/init.el b/emacs/.config/emacs/init.el
index 8e54d71..6860ba9 100644
--- a/emacs/.config/emacs/init.el
+++ b/emacs/.config/emacs/init.el
@@ -496,3 +496,11 @@
496 (treemacs-select-when-already-in-treemacs 'next-or-back) 496 (treemacs-select-when-already-in-treemacs 'next-or-back)
497 :bind (("C-c SPC" . treemacs-select-window) 497 :bind (("C-c SPC" . treemacs-select-window)
498 ("C-c C-SPC" . treemacs-select-window))) 498 ("C-c C-SPC" . treemacs-select-window)))
499
500(use-package which-key
501 :straight '(which-key :type built-in)
502 :custom
503 (which-key-dont-use-unicode nil)
504 (which-key-separator " ⇒ ")
505 :config
506 (which-key-mode +1))