Browse Source

git: use delta as pager if available

Thomas Dy 4 years ago
parent
commit
18d6d4cac1
2 changed files with 11 additions and 0 deletions
  1. 7 0
      .config/git/config
  2. 4 0
      .zsh/config.zsh

+ 7 - 0
.config/git/config

@@ -3,6 +3,13 @@
 	email = thatsmydoing@gmail.com
 [core]
 	autocrlf = input
+[delta]
+	features = side-by-side line-numbers decorations
+	whitespace-error-style = 22 reverse
+[delta "decorations"]
+	commit-decoration-style = bold yellow box ul
+	file-style = bold yellow ul
+	file-decoration-style = none
 [color]
 	ui = true
 [diff]

+ 4 - 0
.zsh/config.zsh

@@ -70,3 +70,7 @@ alias ssh="TERM=xterm-256color ssh"
 
 export EDITOR=vim
 path=(~/.local/bin $path)
+
+if whence -p delta > /dev/null; then
+  export GIT_PAGER=delta
+fi