-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
67 lines (67 loc) · 1.51 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
[user]
name = Cort Spellman
email = [email protected]
[credential]
helper = cache --timeout=7200
[diff]
colorMoved = default
# tool = diffmerge
[difftool "diffmerge"]
# cmd = diffmerge \"$LOCAL\" \"$REMOTE\"
[merge]
conflictstyle = diff3
# tool = diffmerge
# [mergetool "diffmerge"]
# cmd = "diffmerge --merge --result=\"$MERGED\" \"$LOCAL\" \"$(if test -f \"$BASE\"; then echo \"$BASE\"; else echo \"$LOCAL\"; fi)\" \"$REMOTE\""
# trustExitCode = true
[gui]
editor = vim
fontui = -family \"DejaVu Sans\" -size 10 -weight normal -slant roman -underline 0 -overstrike 0
fontdiff = -family Monaco -size 10 -weight normal -slant roman -underline 0 -overstrike 0
[push]
default = simple
[github]
user = spellman
[interactive]
diffFilter = delta --color-only
[magithub]
online = false
[magithub "status"]
includeStatusHeader = false
includePullRequestsSection = false
includeIssuesSection = false
[core]
autocrlf = input
excludesfile = /Users/cort/.gitignore
pager = delta
[pager]
diff = delta
log = delta
reflog = delta
show = delta
[delta]
; syntax-theme = Dracula
; plus-style = "syntax #012800"
; minus-style = "syntax #340001"
light = true
navigate = true
line-numbers = true
side-by-side = true
decorations = true
[alias]
magic = autofixup @{u}
[checkout]
defaultremote = origin
[fetch]
prune = true
prunetags = true
[pull]
rebase = true
[rebase]
autostash = true
[remote]
pushdefault = origin
[submodule]
recurse=true
[tag]
forcesignannotated = true