;; Debian packages: elpa-magit (use-package magit :ensure t :defer t :bind (("C-c g s" . magit-status) ("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))))