-
Notifications
You must be signed in to change notification settings - Fork 0
/
gitconfig
49 lines (42 loc) · 1.35 KB
/
gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[credential]
helper = cache --timeout=360000
[user]
name = Chris Hipple
email = [email protected]
[alias]
lg = log --decorate --oneline --graph --branches --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold blue)(%ar) %C(bold yellow)%d%C(reset) %C(green)%s%C(reset) %C(dim green)- %an%C(reset)'
poosh = push
rmt = remote -v
st = status
pu = push
p = pull
cm = commit -a -m
[github]
user = C-Hipple
[core]
pager = delta
excludesfile = /Users/chrishipple/.gitignore_global
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true # use n and N to move between diff sections
light = false # set to true if you're in a terminal w/ a light background color (e.g. the default macOS terminal)
[merge]
conflictstyle = diff3
[diff]
colorMoved = default
[delta]
line-numbers = false
plus-emph-style = normal
plus-non-emph-style = normal
keep-plus-minus-markers = true
# color-diff-new = blue
# [delta "unobtrusive-line-numbers"]
# line-numbers = false
# line-numbers-minus-style = "#444444"
# line-numbers-zero-style = "#444444"
# line-numbers-plus-style = "#444444"
# line-numbers-left-format = "{nm:>4}┊"
# line-numbers-right-format = "{np:>4}│"
# line-numbers-left-style = blue
# line-numbers-right-style = blue