about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-09-20 11:13:12 +0000
committerDavid Morgan <djm_uk@protonmail.com>2024-09-20 11:13:12 +0000
commitfabd969791e4a6709be1cc0833eaf03a6ee24bb6 (patch)
tree780877043448959c02c262c3efdcc8eba42cd1a4 /.emacs.d
parentf9802defb6d3193b4249139ebd972e0f59966ff1 (diff)
downloaddotfiles-fabd969791e4a6709be1cc0833eaf03a6ee24bb6.tar.gz
Add bindings for git-related
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-git.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-git.el b/.emacs.d/lisp/init-git.el
index 1d7183e..759c36c 100644
--- a/.emacs.d/lisp/init-git.el
+++ b/.emacs.d/lisp/init-git.el
@@ -339,7 +339,9 @@ GitHub/Bitbucket/GitLab/... The URL will be added to the kill ring.  If
   ("C-c g b" . git-link-branch))
 
 (use-feature git-related
-  :defer 10)
+  :bind
+  ("C-c g #" . git-related-find-file)
+  ("C-c g ~" . git-related-update))
 
 (provide 'init-git)
 ;;; init-git.el ends here