-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
83 lines (69 loc) · 1.58 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
[alias]
b = branch
ca = commit -av
cm = commit -v
co = checkout
cob = checkout -b
cp = cherry-pick
d = diff --check
dom = diff master
fo = fetch origin
mer = pull origin main
p = pull
patch = !git --no-pager diff
po = push -u origin HEAD
s = status
sa = stash apply
sdi = stash show -p
sdr = stash drop
sl = stash list
sp = stash pop
ss = stash save
[branch]
autosetupmerge = always
[color]
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "status"]
added = yellow
changed = green
untracked = cyan
[commit]
verbose = true
[core]
attributesfile = ~/.gitattributes
autocrlf = input
excludesfile = ~/.gitignore_global
fileMode = false
mergeoptions = --no-edit
pager = delta
[pager]
diff = delta
log = delta
reflog = delta
show = delta
[delta]
line-numbers = true
syntax-theme = Dracula
plus-style = syntax "#003800"
plus-emph-style = syntax green
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
file-decoration-style = none
hunk-header-decoration-style = cyan box ul
line-numbers-left-style = 124
[interactive]
diffFilter = delta --color-only
[diff "rspec"]
xfuncname = "^[ \t]*((RSpec|describe|context|it|before|after|around|feature|scenario)[ \t].*)$"
[init]
templatedir = ~/.git_template
[includeIf "gitdir:~/code/personal/"]
path = ~/.gitconfig-personal
[includeIf "gitdir:~/code/loamy/"]
path = ~/.gitconfig-loamy
[pull]
rebase = false