diff options
author | Raúl Benencia <id@rbenencia.name> | 2024-10-27 17:11:49 -0700 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2024-10-27 17:11:49 -0700 |
commit | 6414098ae832776e6d213df7ba946da066f9a2df (patch) | |
tree | 939b43aa486cab0443778e09f1b1408320fa4dc5 | |
parent | 7ad3b5ac0c5f8073b4c5f2eca3b83dc74849b34b (diff) |
emacs: mv which-key.el to package rul-bindings
-rw-r--r-- | .emacs.d/init.el | 1 | ||||
-rw-r--r-- | .emacs.d/rul-emacs.org | 1 | ||||
-rw-r--r-- | .emacs.d/rul-init.d/which-key.el | 5 | ||||
-rw-r--r-- | .emacs.d/rul-lisp/packages/rul-bindings.el | 6 |
4 files changed, 6 insertions, 7 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 42bae28..a7dc51c 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -75,7 +75,6 @@ ;; Init parts (will be deprecated in favor of packages) (load-file "~/.emacs.d/rul-init.d/magit.el") -(load-file "~/.emacs.d/rul-init.d/which-key.el") (when-let* ((file (locate-user-emacs-file "rul-post-init.el")) ((file-exists-p file))) diff --git a/.emacs.d/rul-emacs.org b/.emacs.d/rul-emacs.org index e876a1f..3a83547 100644 --- a/.emacs.d/rul-emacs.org +++ b/.emacs.d/rul-emacs.org @@ -191,7 +191,6 @@ Now, I simply start it from Emacs itself. This approach works well for me. ;; Init parts (will be deprecated in favor of packages) (load-file "~/.emacs.d/rul-init.d/magit.el") -(load-file "~/.emacs.d/rul-init.d/which-key.el") (when-let* ((file (locate-user-emacs-file "rul-post-init.el")) ((file-exists-p file))) diff --git a/.emacs.d/rul-init.d/which-key.el b/.emacs.d/rul-init.d/which-key.el deleted file mode 100644 index 1d8fd8d..0000000 --- a/.emacs.d/rul-init.d/which-key.el +++ /dev/null @@ -1,5 +0,0 @@ -(use-package which-key - :ensure t - :config - (which-key-mode) -) diff --git a/.emacs.d/rul-lisp/packages/rul-bindings.el b/.emacs.d/rul-lisp/packages/rul-bindings.el index f337ee0..48426b5 100644 --- a/.emacs.d/rul-lisp/packages/rul-bindings.el +++ b/.emacs.d/rul-lisp/packages/rul-bindings.el @@ -56,4 +56,10 @@ (global-set-key (kbd "C-c t") 'hydra-vterm/body) (global-set-key (kbd "C-c m") 'hydra-go/body) +(use-package which-key + :ensure t + :config + (which-key-mode) +) + (provide 'rul-bindings) |