-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig
More file actions
71 lines (71 loc) · 1.49 KB
/
dot_gitconfig
File metadata and controls
71 lines (71 loc) · 1.49 KB
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
# Local/private config goes in the include
[include]
path = ~/.gitconfig.local
[core]
autocrlf = input
filemode = false
eol = lf
excludesfile = ~/.gitignore
editor = vim
pager = delta
[diff]
colorMoved = default
[interactive]
diffFilter = delta --color-only
[delta]
navigate = true
dark = true
syntax-theme = gruvbox-dark-hard
side-by-side = true
minus-style = "syntax #281818"
plus-style = "syntax #102820"
features = decorations
[delta "decorations"]
commit-decoration-style = bold yellow box ul
file-style = bold yellow
file-decoration-style = yellow box
hunk-header-decoration-style = none
[hub]
protocol = https
[alias]
co = checkout
promote = !$ZSH/bin/git-promote
wtf = !$ZSH/bin/git-wtf
rank-contributors = !$ZSH/bin/git-rank-contributors
count = !git shortlog -sn
ctags = !.git/hooks/ctags
[color]
diff = auto
status = auto
branch = auto
ui = true
[apply]
whitespace = nowarn
[merge]
conflictStyle = zdiff3
[mergetool]
keepBackup = false
[difftool]
prompt = false
[help]
autocorrect = 1
[push]
# See `git help config` (search for push.default)
# for more information on different options of the below setting.
#
# Setting to git 2.0 default to suppress warning message
default = simple
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[branch]
autosetuprebase = always
[init]
templatedir = ~/.git_template
[pull]
rebase = false
[user]
name = Michael Rommel
email = rommel@layer-7.net