From d9a7ecbcbe34f1a8c7ccb476be614f6528ea526a Mon Sep 17 00:00:00 2001 From: Arti Zirk Date: Wed, 27 Feb 2019 10:45:33 +0200 Subject: [PATCH] Add git ls alias and diff white space warning --- .gitconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitconfig b/.gitconfig index 2512600..1ffc334 100644 --- a/.gitconfig +++ b/.gitconfig @@ -6,6 +6,7 @@ [alias] plog = log --graph --pretty=format:'%h -%d %s %n' --abbrev-commit --date=relative --branches + ls = "! for file in $(ls --group-directories-first -p); do git log -n 1 --pretty=\"format:${file}|%s|%ar%n\" -- $file; done | column -s'|' -t -T 2" [web] browser = firefox [browser "firefox"] @@ -22,3 +23,5 @@ smtpServer = smtp.gmail.com smtpUser = arti.zirk@gmail.com smtpServerPort = 587 +[diff] + wsErrorHighlight = all