-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
99 lines (84 loc) · 2 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[user]
email = rnraghunandan@gmail.com
name = CSRaghunandan
[credential]
helper = store
[core]
repositoryFormatVersion = 0
filemode = true
bare = false
logallrefupdates = true
whitespace = tab-in-indent
editor = /usr/local/bin/emacsclient -c -a ''
excludesfile = /home/csraghunandan/.gitignore_global
autocrlf = input
[core]
pager = delta
[delta]
theme = 'Nord'
features = unobtrusive-line-numbers decorations
whitespace-error-style = 22 reverse
[interactive]
diffFilter = delta --color-only --hilight-removed
[delta "unobtrusive-line-numbers"]
line-numbers = true
line-numbers-left-format = "{nm:>4}|"
line-numbers-right-format = "{np:>4}|"
[status]
showUntrackedFiles = all
[color]
branch = always
diff = always
grep = always
pager = true
showbranch = always
status = always
ui = always
[color "branch"]
current = "white blue bold"
local = "white bold"
plain = "white"
remote = "blue bold"
[color "decorate"]
branch = "blue bold"
HEAD = "white bold ul"
remoteBranch = "blue"
stash = "yellow"
tag = "cyan bold"
[color "diff"]
commit = "blue bold"
frag = "blue bold"
func = "white"
meta = "cyan"
new = "green"
old = "red"
plain = "white"
whitespace = "white reverse"
[color "diff-highlight"]
oldNormal = "red bold"
oldHighlight = "white red bold"
newNormal = "green bold"
newHighlight = "white green bold"
[color "grep"]
context = "white"
filename = "white dim ul"
function = "white"
linenumber = "white dim bold"
match = "blue bold"
selected = "white"
separator = "white dim"
[color "interactive"]
error = "red bold"
header = "blue bold"
help = "white dim"
prompt = "cyan"
[color "status"]
added = "green bold"
changed = "yellow bold"
header = "white"
nobranch = "magenta bold"
unmerged = "blue"
untracked = "red bold"
updated = "cyan bold"
[pull]
rebase = false