diff options
| author | Alex <alex.corcoles@veecle.io> | 2024-08-16 17:09:48 +0200 |
|---|---|---|
| committer | alexpdp7 <alex@corcoles.net> | 2024-08-16 17:13:59 +0200 |
| commit | 431a9ab2e9b5cb8558e99ba6537582617a63ded6 (patch) | |
| tree | 9b94922e250fdda9c81ef10fd46e54a31394c144 /emacs/emacs.el | |
| parent | 39b4bbda5bd09632425f61670a2286f4fbb15f37 (diff) | |
Add which-key
Diffstat (limited to 'emacs/emacs.el')
| -rw-r--r-- | emacs/emacs.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/emacs.el b/emacs/emacs.el index 6963eec8..528260d8 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -57,6 +57,12 @@ (global-set-key (kbd "C-x C-b") #'helm-mini) (setq helm-ff-skip-boring-files t)) +;; learn keyboard shortcuts +(use-package which-key + :ensure t + :config + (which-key-mode)) + ;; LSP base for Rust and Java (use-package lsp-mode :ensure t |
