-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
75 lines (75 loc) · 1.47 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
[core]
excludesfile = /Users/mcsonka/.gitignore_global
pager = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight | less
editor = vim
autocrlf = input
[user]
name = Miroslav Csonka
email = [email protected]
[push]
default = simple
[filter "lfs"]
smudge = git-lfs smudge -- %f
required = true
clean = git-lfs clean -- %f
process = git-lfs filter-process
[rebase]
autosquash = true
[color]
ui = true
[color]
branch = auto
diff = auto
status = auto
[color "branch"]
current = red reverse
local = blue
remote = green
[color "diff"]
meta = yellow
frag = magenta
old = red bold
new = green
plain = white
[color "status"]
added = yellow
changed = green
untracked = cyan
[branch]
autosetuprebase = always
[mergetool "vimdiff"]
cmd = vimdiff -f $LOCAL $MERGED $REMOTE
[merge]
tool = vimdiff
[mergetool]
prompt = false
keepBackup = true
[diff]
compactionHeuristic = true
mnemonicprefix = true
colorMoved = dimmed_zebra
[blame]
date = short
[help]
autocorrect = 1
[grep]
lineNumber = true
patternType = extended
[fetch]
prune = true
[gitsh]
prompt = "%D %c%b%#%w"
[pull]
rebase = true
[commit]
# template = /Users/miroslavcsonka/dotfiles/.gitcommit
verbose = true
[interactive]
diffFilter = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[interactive]
singleKey = true