Added git config

This commit is contained in:
Wryn Wagner 2020-09-10 13:44:34 -06:00
parent 3fd195ca45
commit 9c64491e7d
2 changed files with 20 additions and 0 deletions

15
config/git/gitconfig Normal file
View File

@ -0,0 +1,15 @@
[user]
email = wagner.wryn@gmail.com
name = Wryn Wagner
[push]
default = current
[difftool]
trustExitCode = true
prompt = false
[diff]
tool = vimdiff
[merge]
tool = vimdiff
[pull]
default = current
rebase = true

5
setup
View File

@ -134,6 +134,10 @@ function CONFIG__KITTY() {
echo "linked kitty configuration" echo "linked kitty configuration"
} }
function CONFIG__GIT() {
CONFIG__BASIC_SYMLINK "$HOME/.gitconfig" "$HOME/.wryn/config/git/gitconfig";
}
function CONFIG__PYLINT() { function CONFIG__PYLINT() {
CONFIG__BASIC_SYMLINK "$HOME/.config/pylintrc" "$HOME/.wryn/config/pylint/pylintrc"; CONFIG__BASIC_SYMLINK "$HOME/.config/pylintrc" "$HOME/.wryn/config/pylint/pylintrc";
@ -159,6 +163,7 @@ function CONFIG__SETUP() {
CONFIG__COMPTON; CONFIG__COMPTON;
CONFIG__KITTY; CONFIG__KITTY;
CONFIG__GIT;
CONFIG__PYLINT; CONFIG__PYLINT;
CONFIG__TMUX; CONFIG__TMUX;