Emacs: Disable git-gutter.

This commit is contained in:
tastytea 2020-05-03 03:32:44 +02:00
parent dc15252dc3
commit fc5d257766

View File

@ -1,6 +1,6 @@
;;; git.el --- magit and stuff. -*- lexical-binding: t; -*- ;;; git.el --- magit and stuff. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-04-23T15:31:21+0200> ;; Time-stamp: <2020-05-03T03:11:41+0200>
;;; Commentary: ;;; Commentary:
@ -69,11 +69,11 @@
:hook (prog-mode . forge-bug-reference-setup)) :hook (prog-mode . forge-bug-reference-setup))
) ; unless slow-computer. ) ; unless slow-computer.
;; Show VC status in fringe. ;; ;; Show VC status in fringe.
(use-package git-gutter ;; (use-package git-gutter
:diminish git-gutter-mode ;; :diminish git-gutter-mode
:bind ("C-c G" . git-gutter:popup-hunk) ; Popup diff hunk. ;; :bind ("C-c G" . git-gutter:popup-hunk) ; Popup diff hunk.
:hook (find-file . git-gutter-mode)) ; Maybe slows down opening? ;; :hook (find-file . git-gutter-mode)) ; Maybe slows down opening?
(provide 'programming/git) (provide 'programming/git)
;;; git.el ends here ;;; git.el ends here