-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.gitconfig
120 lines (116 loc) · 2.85 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[user]
# you probably want to change this bit.
name = isaacs
email = [email protected]
signingkey = 0xD67873B9DBD447B2
fullname = Isaac Z. Schlueter
website = https://blog.izs.me
[github]
user = isaacs
[alias]
cl = log --graph --pretty=format:'%h%d %s (%an)'
ci = commit
st = status
br = branch
co = checkout
cp = cherry-pick
df = diff
ln = log --graph --pretty=format:'%Cred%h%Creset %C(yellow)%an%d%Creset %s %b %Cgreen(%cr)%Creset' --date=relative
lg = log --graph --pretty=format:'%Cred%h%Creset %C(yellow)%an%d%Creset %s %Cgreen(%cs)%Creset' --date=relative
ll = log --first-parent --pretty=format:'%h %s'
lc = log --first-parent --pretty=format:'%s'
lo = log --oneline
authors = log --pretty=format:'%an <%ae>'
dif = diff
di = diff
dff = diff
[branch.master]
mergeoptions = log
[color]
grep = auto
branch = auto
diff = auto
status = auto
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow
frag = magenta bold
commit = yellow
whitespace = red reverse
#old = 52 218
#new = 22 193
old = 255 52
new = 255 22
[color "diff-highlight"]
oldHighlight = 52 218
oldNormal = 255 52
newNormal = 255 22
newHighlight = 22 194
[color "status"]
added = yellow
changed = green
[diff-so-fancy]
markEmptyLines = false
stripLeadingSymbols = true
[difftool]
prompt = false
[diff]
tool = vimdiff
[merge]
tool = vimdiff
conflictstyle = diff3
[push]
default = current
[core]
excludesfile = /Users/isaacs/.gitignore_global
pager = diff-so-fancy | less --tabs=4 -RFX
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[tag]
forceSignAnnotated = true
gpgSign = true
;[merge "npm-merge-driver"]
; name = automatically merge npm lockfiles
; driver = npx npm-merge-driver merge %A %O %B %P
[init]
defaultBranch = main
[credential]
helper = osxkeychain
[commit]
gpgsign = true
[core]
pager = delta --dark
[interactive]
diffFilter = delta --color-only --features=interactive
[delta]
features = decorations
[delta "interactive"]
keep-plus-minus-markers = false
[delta "decorations"]
commit-decoration-style = blue ol
commit-style = red black
file-style = omit
minus-style = syntax "#330611"
plus-style = syntax "#112a18"
minus-emph-style = "#440000" "#ff99cc" # 52 218
minus-empty-line-marker-style = normal "#660000"
plus-empty-line-marker-style = normal "#004400"
plus-emph-style = "#004300" "#d7ffd7" # 22 194 #
hunk-header-decoration-style = blue box
hunk-header-file-style = red
hunk-header-line-number-style = "#06a000"
hunk-header-style = file line-number syntax "#111111"
grep-file-style = "#cccccc" "#333333"
hyperlinks = true
max-line-length = 512
line-numbers = false
dark = true
#[url "ssh://[email protected]:"]
# insteadOf = https://github.com/