From e54376fdce5129d941ae82a64aecdbcce202043e Mon Sep 17 00:00:00 2001 From: George Rawlinson Date: Sat, 27 Apr 2019 13:22:47 +1200 Subject: [PATCH] fix(git): mixed whitespace --- git/.config/git/config | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/git/.config/git/config b/git/.config/git/config index dba7bbd..3cb76ef 100644 --- a/git/.config/git/config +++ b/git/.config/git/config @@ -1,28 +1,29 @@ [user] - email = george@rawlinson.net.nz - name = George Rawlinson + email = george@rawlinson.net.nz + name = George Rawlinson [core] - # if $EDITOR not set, use this as editor - editor = nvim - # fix whitespace issues - whitespace = fix, blank-at-eol, blank-at-eof, space-before-tab, trailing-space + # if $EDITOR not set, use this as editor + editor = nvim + # fix whitespace issues + whitespace = fix, blank-at-eol, blank-at-eof, space-before-tab, trailing-space [color] - # automatically color output, except when piping - ui = auto + # automatically color output, except when piping + ui = auto [color "status"] - # colours when using status command - untracked = magenta - changed = red - added = green + # colours when using status command + untracked = magenta + changed = red + added = green [push] - # push current branch instead of all - default = simple + # push current branch instead of all + default = simple [alias] - # you really think i use this? no. it's an example. - # source - https://github.com/ngerakines/commitment - yolo = !git commit -m \"$(curl -s whatthecommit.com/index.txt)\" + # you really think i use this? no. it's an example. + # source - https://github.com/ngerakines/commitment + yolo = !git commit -m \"$(curl -s whatthecommit.com/index.txt)\" +