-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
56 lines (41 loc) · 872 Bytes
/
.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
[user]
email = [email protected]
name = Ankush Menat
[commit]
gpgsign = false
[difftool]
tool = vimdiff
colorMoved = default
[color "status"]
added = green bold
changed = yellow bold
untracked = red bold
[core]
editor = nvim
pager = delta
[merge]
tool = nvim
[mergetool "nvim"]
cmd = nvim -f -c \"Gdiffsplit!\" \"$MERGED\"
[interactive]
diffFilter = delta --color-only
[commit]
verbose = true
template = ~/.gitmessage
[pull]
ff = only
[blame]
date = relative
[delta]
features = line-numbers
whitespace-error-style = 22 reverse
syntax-theme = Dracula
[delta "decorations"]
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
file-decoration-style = none
[includeIf "gitdir:~/benches/"]
path = .gitconfig_frappe
[alias]
pick = cherry-pick -x
fomo = !git fetch upstream develop:develop && git rebase develop