diff options
author | Raúl Benencia <id@rbenencia.name> | 2024-10-27 17:34:08 -0700 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2024-10-27 17:34:08 -0700 |
commit | 2fa1d16262cbf08e87cb4aeaef23bdb02d46d722 (patch) | |
tree | 5c6dfe9f685120fd12de84958b54678f4942b941 /.emacs.d | |
parent | 3c94a9f4adf2fcb18654a7d5c48fed6eddadece0 (diff) |
emacs: rm magit.el
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/rul-init.d/magit.el | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/.emacs.d/rul-init.d/magit.el b/.emacs.d/rul-init.d/magit.el deleted file mode 100644 index 11370e5..0000000 --- a/.emacs.d/rul-init.d/magit.el +++ /dev/null @@ -1,18 +0,0 @@ -;; Debian packages: elpa-magit - -(use-package magit - :ensure 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)))) - -(add-to-list 'project-switch-commands '(magit-project-status "Magit" "m")) |