-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
93 lines (93 loc) · 1.86 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
[user]
useConfigOnly = true
email = [email protected]
name = psteinroe
signingkey = C3F5A010
[include]
path = ~/.gitconfig.local
[help]
autocorrect = 1
[core]
editor = code --wait
excludesfile = ~/.gitignore
legacyheaders = false
whitespace = trailing-space,space-before-tab
pager = delta
[interactive]
diffFilter = delta --color-only
[add.interactive]
useBuildtin = false
[delta]
navigate = true
light = false
line-numbers = true
side-by-side = true
syntax-theme = Dracula
[alias]
undo = reset --soft HEAD^
[apply]
whitespace = fix
[color]
status = auto
diff = auto
branch = auto
interactive = auto
ui = 1
[push]
default = upstream
followTags = true
autoSetupRemote = true
[status]
showUntrackedFiles = all
[commit]
gpgsign = true
[transfer]
fsckobjects = true
[i18n]
commitencoding = UTF-8
logoutputencoding = UTF-8
[repack]
usedeltabaseoffset = true
[branch]
autosetupmerge = true
sort = -authordate
[diff]
tool = Kaleidoscope
algorithm = patience
colorMoved = default
[difftool]
prompt = false
[difftool "Kaleidoscope"]
cmd = ksdiff --partial-changeset --relative-path \"$MERGED\" -- \"$LOCAL\" \"$REMOTE\"
[merge]
conflictstyle = diff3
tool = Kaleidoscope
[mergetool]
prompt = false
keepBackup = false
[mergetool "Kaleidoscope"]
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
trustexitcode = true
[mergetool "nvim"]
cmd = nvim -f -c \"Gdiffsplit!\" \"$MERGED\"
[mergetool "code"]
cmd = "code $MERGED"
keepBackup = false
trustexitcode = true
[rebase]
autosquash = true
[rerere]
enabled = 1
[fetch]
prune = true
fsckobjects = false
[filter "lfs"]
required = true
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
clean = git-lfs clean -- %f
[web]
browser = open
[pull]
rebase = true
autostash = true