Update gitconfig
This commit is contained in:
parent
f9220da492
commit
abcff5303c
18
gitconfig
18
gitconfig
|
@ -2,6 +2,7 @@
|
||||||
# local and/or misc changes not committed to Git:
|
# local and/or misc changes not committed to Git:
|
||||||
path = .gitconfig.local
|
path = .gitconfig.local
|
||||||
[alias]
|
[alias]
|
||||||
|
aa = add .
|
||||||
adp = add -p
|
adp = add -p
|
||||||
br = branch
|
br = branch
|
||||||
ci = commit
|
ci = commit
|
||||||
|
@ -27,17 +28,26 @@
|
||||||
name = Rob Watson
|
name = Rob Watson
|
||||||
[core]
|
[core]
|
||||||
editor = vim
|
editor = vim
|
||||||
|
quotePath = false
|
||||||
|
commitGraph = true
|
||||||
|
pager = delta
|
||||||
|
[color]
|
||||||
|
ui = auto
|
||||||
|
[pull]
|
||||||
|
ff = only
|
||||||
|
[init]
|
||||||
|
defaultBranch = development
|
||||||
[credential "https://github.com"]
|
[credential "https://github.com"]
|
||||||
helper = !gh auth git-credential
|
helper = !gh auth git-credential
|
||||||
[diff]
|
[diff]
|
||||||
tool = vimdiff
|
tool = vimdiff
|
||||||
[merge]
|
[merge]
|
||||||
tool = vimdiff
|
tool = vimdiff
|
||||||
[core]
|
|
||||||
pager = delta
|
|
||||||
[interactive]
|
[interactive]
|
||||||
diffFilter = delta --color-only
|
diffFilter = delta --color-only
|
||||||
[delta]
|
[delta]
|
||||||
side-by-side = true
|
side-by-side = true
|
||||||
[color]
|
[delta "decorations"]
|
||||||
ui = auto
|
commit-decoration-style = bold yellow box ul
|
||||||
|
file-style = bold yellow ul
|
||||||
|
file-decoration-style = none
|
||||||
|
|
Loading…
Reference in New Issue