Skip to content

Commit

Permalink
Merge pull request #268 from mjhoy/which-key
Browse files Browse the repository at this point in the history
emacs: add which-key
  • Loading branch information
mjhoy authored Oct 1, 2024
2 parents 7e41adb + 97a5a3b commit 04f51ec
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,9 @@
[submodule "wgrep"]
path = emacs.d/lib/wgrep
url = https://github.com/mhayashi1120/Emacs-wgrep
[submodule "which-key"]
path = emacs.d/lib/which-key
url = [email protected]:justbur/emacs-which-key.git
[submodule "winring"]
path = emacs.d/lib/winring
url = https://gitlab.com/warsaw/winring
Expand Down
1 change: 1 addition & 0 deletions emacs.d/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
(require 'init-winring)
(require 'init-compilation)
(require 'init-project)
(require 'init-which-key)
(require 'init-ibuffer)
(require 'init-dired)
(require 'init-uniquify)
Expand Down
1 change: 1 addition & 0 deletions emacs.d/lib/which-key
Submodule which-key added at 38d430
8 changes: 8 additions & 0 deletions emacs.d/lisp/init-which-key.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
(require 'which-key)

;; TODO: Remove this package when I switch to emacs 30.
;; https://github.com/justbur/emacs-which-key

(which-key-mode)

(provide 'init-which-key)

0 comments on commit 04f51ec

Please sign in to comment.