From 1c1c1407e090a690d41374ed7b42197627350c0a Mon Sep 17 00:00:00 2001 From: Paul Trowbridge Date: Sun, 17 May 2020 00:05:00 -0400 Subject: [PATCH] include gitconfig --- .gitconfig | 14 ++++++++++++++ setup.sh | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .gitconfig diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..76e5eb5 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,14 @@ +[user] + email = paul@hptrow.me + name = Paul Trowbridge +[core] + autocrlf = false + editor = vim +[push] + default = simple +[alias] + quick-stats = ! /usr/local/bin/git-quick-stats +[log] + date = format:%Y-%m-%d %H:%M:%S +[format] + pretty = format:'%C(yellow)%h %Cred%ad %Cblue%an %Cgreen%d %Creset%s' diff --git a/setup.sh b/setup.sh index b6dd967..3ac05c9 100755 --- a/setup.sh +++ b/setup.sh @@ -5,7 +5,7 @@ dir=~/dot_config backup=~/dot_config_backup -files=".bashrc .vimrc .tmux.conf .psqlrc" +files=".bashrc .vimrc .tmux.conf .psqlrc .gitconfig" #------------------------------------------------ create the resore directory if it doesn't already exist--------------------------------------------------