Added git config
This commit is contained in:
parent
3fd195ca45
commit
9c64491e7d
15
config/git/gitconfig
Normal file
15
config/git/gitconfig
Normal 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
5
setup
@ -134,6 +134,10 @@ function CONFIG__KITTY() {
|
||||
echo "linked kitty configuration"
|
||||
}
|
||||
|
||||
function CONFIG__GIT() {
|
||||
CONFIG__BASIC_SYMLINK "$HOME/.gitconfig" "$HOME/.wryn/config/git/gitconfig";
|
||||
}
|
||||
|
||||
function CONFIG__PYLINT() {
|
||||
CONFIG__BASIC_SYMLINK "$HOME/.config/pylintrc" "$HOME/.wryn/config/pylint/pylintrc";
|
||||
|
||||
@ -159,6 +163,7 @@ function CONFIG__SETUP() {
|
||||
CONFIG__COMPTON;
|
||||
CONFIG__KITTY;
|
||||
|
||||
CONFIG__GIT;
|
||||
CONFIG__PYLINT;
|
||||
CONFIG__TMUX;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user