diff options
author | noa | 2025-02-22 23:53:10 +0800 |
---|---|---|
committer | noa | 2025-02-22 23:53:10 +0800 |
commit | 27d2f660192b2cb0eea3068e9e407889127fe03d (patch) | |
tree | 415fae45d568bffecce0e1005247aaa9e6737cd7 /emacs/init.el | |
parent | 4cae29a67f15faa504a9ced73b0155624f22fab3 (diff) |
Enable which-key
Diffstat (limited to 'emacs/init.el')
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 7d3902f..35c01dd 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -61,6 +61,10 @@ ;; startup.el does not provide itself, cannot be used with use-package (setopt inhibit-startup-screen t) +;; Help with keybindings +(use-package which-key + :hook (after-init . which-key-mode)) + (use-package mouse :custom (mouse-yank-at-point t) |