summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'emacs')
-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))