blob: a2ab5633c05e7988b2cfa35d73aa099ed60e1bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
(use-package magit
:ensure t
:bind
(("C-c g s" . magit-status)
("C-c g F" . magit-pull-from-upstream)
("C-c g b" . magit-blame))
:config
(progn
(defun inkel/magit-log-edit-mode-hook ()
(flyspell-mode t)
(turn-on-auto-fill))
(defadvice magit-status (around magit-fullscreen activate)
(window-configuration-to-register :magit-fullscreen)
ad-do-it
(delete-other-windows))))
(add-to-list 'project-switch-commands '(magit-project-status "Magit" "m"))
(provide 'rul-vc)
|