-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.tigrc
252 lines (237 loc) · 7.44 KB
/
.tigrc
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
set main-view-id = true
set line-graphics = utf-8
set mailmap = true
set main-view = date:default author:full id:true commit-title:yes,refs,graph
# Neonwolf Color Scheme for Tig
#
# Based mostly on the colors from the badwolf airline theme
#
# Github: /~https://github.com/h3xx/tig-colors-neonwolf
#
# disable importing colors from git config
# (breaks main-ref coloring, probably others)
set git-colors = no
color header 121 235 bold
color section 39 235 bold
color search-result black 81 bold
# diff view
color diff-header 39 235 bold
color diff-index 81 235 bold
color diff-oldmode 81 235 bold
color diff-newmode 81 235 bold
color "rename from " 81 235 bold
color "rename to " 81 235 bold
color "similarity " 81 235 bold
color "dissimilarity " 81 235 bold
color diff-stat 222 235 bold
color diff-chunk 165 235 bold
color diff-add 154 235 bold
color diff-add-highlight 232 154 bold
color diff-del 196 235 bold
color diff-del-highlight 232 196 bold
color " +" 154 default
color " -" 196 default
color "--- " 39 235 bold
color "+++ " 39 235 bold
color "Merge: " 222 235 bold
color "Refs: " 222 235 bold
color "commit " 154 235 bold
color "Commit: " 39 235 bold
color "CommitDate: " 165 235 bold
color "Author: " 39 235 bold
color "AuthorDate: " 165 235 bold
color "Tagger: " 222 235 bold
color "TaggerDate: " 222 235 bold
color "---" 165 default bold
# log view, mostly
color "Date: " 165 default bold
color " Signed-off-by" 222 default bold
color " Acked-by" 222 default bold
color " Tested-by" 222 default bold
color " Reviewed-by" 222 default bold
# main view
color author 39 default bold
color date 165 default bold
color graph-commit 154 default bold
color id 154 default bold
color main-remote 222 default bold
color main-tracked 222 default bold
color main-tag 166 default bold
color main-local-tag 166 default bold
color main-head 81 default bold
color main-ref 121 default bold
color overflow 196 default
# window dressing
color title-blur 39 235 bold
color title-focus 39 232 bold reverse
color cursor 232 154 bold
color status 82 default
# tree view
color mode 121 default
color directory 121 default bold
color file 255 default
# status view
color stat-none 82 default
color stat-staged 154 235 bold
color stat-unstaged 166 235 bold
color stat-untracked 81 235 bold
# lines in digraph
color palette-0 165 default bold
color palette-1 39 default bold
color palette-2 222 default bold
color palette-3 166 default bold
color palette-4 121 default bold
color palette-5 82 default bold
color palette-6 196 default bold
color palette-7 238 default bold
# repeat
color palette-8 165 default
color palette-9 39 default
color palette-10 222 default
color palette-11 166 default
color palette-12 121 default
color palette-13 82 default
# grep view
color grep.file 39 235 bold
color grep.line-number 165 235 bold
color grep.delimiter 82 235 bold # no effect?
color delimiter 82 235 bold # no effect?
# help view
color help-group 165 235 bold
color help-action 222 235 bold
color "---" blue default
color "diff --" yellow default
color "--- " yellow default
color "+++ " yellow default
color "@@" magenta default
color "+" green default
color " +" green default
color "-" red default
color " -" red default
color "index " blue default
color "old file mode " yellow default
color "new file mode " yellow default
color "deleted file mode " yellow default
color "copy from " yellow default
color "copy to " yellow default
color "rename from " yellow default
color "rename to " yellow default
color "similarity " yellow default
color "dissimilarity " yellow default
color "\ No newline at end of file" blue default
color "diff-tree " blue default
color "Author: " cyan default
color "Commit: " magenta default
color "Tagger: " magenta default
color "Merge: " blue default
color "Date: " yellow default
color "AuthorDate: " yellow default
color "CommitDate: " yellow default
color "TaggerDate: " yellow default
color "Refs: " red default
color "Reflog: " red default
color "Reflog message: " yellow default
color "stash@{" magenta default
color "commit " green default
color "parent " blue default
color "tree " blue default
color "author " green default
color "committer " magenta default
color " Signed-off-by:" yellow default
color " Acked-by:" yellow default
color " Reviewed-by:" yellow default
color " Helped-by:" yellow default
color " Reported-by:" yellow default
color " Mentored-by:" yellow default
color " Suggested-by:" yellow default
color " Cc:" yellow default
color " Noticed-by:" yellow default
color " Tested-by:" yellow default
color " Improved-by:" yellow default
color " Thanks-to:" yellow default
color " Based-on-patch-by:" yellow default
color " Contributions-by:" yellow default
color " Co-authored-by:" yellow default
color " Requested-by:" yellow default
color " Original-patch-by:" yellow default
color " Inspired-by:" yellow default
color default default default normal
color cursor white green bold
color status green default
color delimiter magenta default
color date blue default
color mode cyan default
color id magenta default
color overflow red default
color header yellow default
color section cyan default
color directory yellow default
color file default default
color grep.file blue default
color file-size default default
color line-number cyan default
color title-blur white blue
color title-focus white blue bold
color main-commit default default
color main-annotated default default bold
color main-tag magenta default bold
color main-local-tag magenta default
color main-remote yellow default
color main-replace cyan default
color main-tracked yellow default bold
color main-ref cyan default
color main-head cyan default bold
color stat-none default default
color stat-staged magenta default
color stat-unstaged magenta default
color stat-untracked magenta default
color help-group blue default
color help-action yellow default
color diff-stat blue default
color diff-add-highlight green default standout
color diff-del-highlight red default standout
color palette-0 magenta default
color palette-1 yellow default
color palette-2 cyan default
color palette-3 green default
color palette-4 default default
color palette-5 white default
color palette-6 red default
color palette-7 magenta default bold
color palette-8 yellow default bold
color palette-9 cyan default bold
color palette-10 green default bold
color palette-11 default default bold
color palette-12 white default bold
color palette-13 red default bold
color graph-commit blue default
color search-result black yellow
# Mappings for colors read from git configuration.
# Set to "no" to disable.
set git-colors = \
branch.current=main-head \
branch.local=main-ref \
branch.plain=main-ref \
branch.remote=main-remote \
\
diff.meta=diff-header \
diff.meta=diff-index \
diff.meta=diff-oldmode \
diff.meta=diff-newmode \
diff.frag=diff-chunk \
diff.old=diff-del \
diff.new=diff-add \
\
diff-highlight.oldHighlight=diff-del-highlight \
diff-highlight.newHighlight=diff-add-highlight \
\
grep.filename=grep.file \
grep.linenumber=grep.line-number \
grep.separator=grep.delimiter \
\
status.branch=status.header \
status.added=stat-staged \
status.updated=stat-staged \
status.changed=stat-unstaged \
status.untracked=stat-untracked
# vi: ts=8 sts=8 sw=8 noet