Attempt to use git-gutter-fringe only in graphics mode

This commit is contained in:
Gergely Polonkai 2016-11-09 10:13:43 +01:00
parent 50bfccd7a8
commit 613d2c63ea
1 changed files with 13 additions and 8 deletions

21
init.el
View File

@ -282,14 +282,19 @@
(drag-stuff-global-mode t))
;; Git gutter
(use-package git-gutter-fringe
:ensure t
:demand
:config
(global-git-gutter-mode t)
:bind
(:map gpolonkai/pers-map
("gg" . git-gutter:update-all-windows)))
;; If we are in text-only mode, there is no fringe.
(let ((gitgutter-package
(if (display-graphic-p)
"git-gutter-fringe"
"git-gutter")))
(eval `(use-package ,gitgutter-package
:ensure t
:demand
:config
(global-git-gutter-mode t)
:bind
(:map gpolonkai/pers-map
("gg" . git-gutter:update-all-windows)))))
;; Org mode
(use-package org