Move some stuff

This commit is contained in:
Maciej 2026-05-25 09:09:03 +03:00
parent 253d185ca3
commit bcaa83cfd5
Signed by: maciej
GPG key ID: 28243AF437E32F99
57 changed files with 55 additions and 12 deletions

View file

@ -1,27 +0,0 @@
;;; icejam-magit.el -- summary -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(eval-when-compile
(defvar icejam-keys-mode-map)
(defvar magit-blame-mode-map)
(defvar git-commit-setup-hook)
(declare-function git-commit-setup-capf 'git-commit))
(use-package magit
:ensure t
:commands (magit-blame-quit)
: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))
:config
(setopt git-commit-setup-hook
(remove #'git-commit-setup-capf git-commit-setup-hook)))
(provide 'icejam-magit)
;;; icejam-magit.el ends here