Emacs: Add git-gutter.

This commit is contained in:
tastytea 2020-04-18 16:19:57 +02:00
parent 16042f637e
commit 0de331cb9e
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
;;; git.el --- magit and stuff. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-04-18T03:09:42+0200>
;; Time-stamp: <2020-04-18T16:15:18+0200>
;;; Commentary:
@ -65,5 +65,10 @@
)
) ; unless slow-computer.
;; Show VC status in fringe.
(use-package git-gutter
:bind ("C-c G" . git-gutter:popup-hunk) ; Popup current diff hunk.
:hook (prog-mode . git-gutter-mode))
(provide 'programming/git)
;;; git.el ends here