-
Notifications
You must be signed in to change notification settings - Fork 2
/
nomad.toml
251 lines (216 loc) · 5.04 KB
/
nomad.toml
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
# ===============
# Configure nomad
# ===============
# ================================= INFO START =================================
# Refer to the repository's README to learn more about how to use nomad:
#
# https://github.com/JosephLai241/nomad
# If you are unfamiliar with TOML, refer to the official site to learn more about
# its syntax:
#
# https://toml.io/en/
# ------------------------------- CUSTOM COLORS --------------------------------
# If you do not want to use the default colors, you can set the color to an Xterm
# 256 color's hex code located here:
#
# https://upload.wikimedia.org/wikipedia/commons/1/15/Xterm_256color_chart.svg
#
# For example, if you want to set something to the color d78700 (a shade of orange),
# wrap the value in quotes, ie. "d78700".
# ------------------------------------------------------------------------------
# ================================== INFO END ==================================
# NOTE
# ----
#
# The default values for each item are displayed below.
# The default value will be used if an invalid value is provided.
#
# Uncomment the items below this table to set the tree's style.
#
[tree]
#indent = 4
#padding = 1
#
# Uncomment the item below this table to set tree item colors.
#
# Default colors
# --------------
# * "black"
# * "blue"
# * "cyan"
# * "green"
# * "purple"
# * "red"
# * "white"
# * "yellow"
#
[tree.items.colors]
#directory_color = "blue"
#
# Uncomment the items below this table to set the tree's indent characters.
#
[tree.indent_chars]
#down = "|"
#down_and_right = "├"
#empty = " "
#right = "─"
#turn_right = "└"
#
# Uncomment the items below this table to set label styles.
#
# Default colors
# --------------
# * "black"
# * "blue"
# * "cyan"
# * "green"
# * "purple"
# * "red"
# * "white"
# * "yellow"
#
[tree.labels]
#item_labels = "d78700"
#directory_labels = "d78700"
#
# Uncomment the items below this table to set the text displayed for each Git
# item's status.
#
[tree.git.markers]
#conflicted_marker = "!"
#deleted_marker = "D"
#modified_marker = "M"
#renamed_marker = "R"
#typechanged_marker = "TC"
#untracked_marker = "U"
#staged_added_marker = "SA"
#staged_deleted_marker = "SD"
#staged_modified_marker = "SM"
#staged_renamed_marker = "SR"
#staged_typechanged_marker = "STC"
#
# Uncomment the items below this table to set the colors of the Git markers.
#
# Default colors
# --------------
# * "black"
# * "blue"
# * "cyan"
# * "green"
# * "purple"
# * "red"
# * "white"
# * "yellow"
#
[tree.git.colors]
#conflicted_color = "red"
#deleted_color = "red"
#modified_color = "d78700" # A shade of orange.
#renamed_color = "red"
#typechanged_color = "purple"
#untracked_color = "767676" # A shade of gray.
#staged_added_color = "green"
#staged_deleted_color = "red"
#staged_modified_color = "d78700" # A shade of orange.
#staged_renamed_color = "red"
#staged_typechanged_color = "purple"
#
# Uncomment the item below this table to set the color of the text that is
# matched by the pattern flag (`-p/--pattern`).
#
# Default colors
# --------------
# * "black"
# * "blue"
# * "cyan"
# * "green"
# * "purple"
# * "red"
# * "white"
# * "yellow"
#
[tree.regex]
#match_color = "0087ff" # A shade of blue.
#
# Uncomment the items below this table to set the TUI's colors.
#
# Default colors
# --------------
# * "black"
# * "blue"
# * "cyan"
# * "darkgray"
# * "gray"
# * "green"
# * "lightblue"
# * "lightcyan"
# * "lightgreen"
# * "lightmagenta"
# * "lightred"
# * "lightyellow"
# * "magenta"
# * "red"
# * "white"
# * "yellow"
#
[tui.style]
#border_color = "0087ff" # A shade of blue.
# The color of the tree item if it does not contain any Git changes.
#standard_item_highlight_color = "0087ff" # A shade of blue.
#
# Uncomment the items below this table to set the Git colors in the TUI.
#
# Default colors
# --------------
# * "black"
# * "blue"
# * "cyan"
# * "darkgray"
# * "gray"
# * "green"
# * "lightblue"
# * "lightcyan"
# * "lightgreen"
# * "lightmagenta"
# * "lightred"
# * "lightyellow"
# * "magenta"
# * "red"
# * "white"
# * "yellow"
#
[tui.git.colors]
#conflicted_color = "red"
#deleted_color = "red"
#modified_color = "d78700" # A shade of orange.
#renamed_color = "red"
#untracked_color = "767676" # A shade of gray.
#staged_added_color = "green"
#staged_deleted_color = "red"
#staged_modified_color = "d78700" # A shade of orange.
#staged_renamed_color = "red"
#
# Uncomment the item below this table to set the color of the text that is
# matched when searching for a pattern in the text view.
#
# Default colors
# --------------
# * "black"
# * "blue"
# * "cyan"
# * "darkgray"
# * "gray"
# * "green"
# * "lightblue"
# * "lightcyan"
# * "lightgreen"
# * "lightmagenta"
# * "lightred"
# * "lightyellow"
# * "magenta"
# * "red"
# * "white"
# * "yellow"
#
[tui.regex]
#match_color = "0087ff" # A shade of blue.