Make which-key more useful

This commit is contained in:
Jeremy Dormitzer 2024-05-07 11:12:22 -04:00
parent 5d1eae825f
commit 0209cf16c5

View File

@ -11,7 +11,12 @@
:prefix-map 'leader-map))
(use-package which-key
:hook (after-init . (lambda () (which-key-mode 1))))
:hook (after-init . (lambda () (which-key-mode 1)))
:custom
(which-key-show-operator-state-maps t)
:general
(leader-map "," #'which-key-show-major-mode)
(leader-map "\\" #'which-key-show-top-level))
(leader-def-key "SPC" #'execute-extended-command)