emacs/lisp/icejam-magit.el
Maciej Szlosarczyk f0340183f6
Some checks are pending
/ Test config on ${{matrix.node}} (20) (push) Has started running
Move some key bindings around
2024-08-03 07:15:30 +03:00

18 lines
462 B
EmacsLisp

;;; icejam-magit.el -- summary -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(require 'icejam-keys-mode)
(use-package magit
:straight t
:defer t
:bind (:map icejam-keys-mode-map
("<f5> c" . magit-checkout)
("<f5> b" . magit-blame-addition)
("<f5> g" . magit-status))
(:map magit-blame-mode-map
("<f5> b" . 'magit-blame-quit)))
(provide 'icejam-magit)
;;; icejam-magit.el ends here