-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathhypnos.vim
More file actions
executable file
·277 lines (246 loc) · 13 KB
/
Copy pathhypnos.vim
File metadata and controls
executable file
·277 lines (246 loc) · 13 KB
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
" NR-16 COLOR NAME
" 0 Black
" 1 DarkBlue
" 2 DarkGreen
" 3 DarkCyan
" 4 DarkRed
" 5 DarkMagenta
" 6 Brown, DarkYellow
" 7 LightGray, LightGrey, Gray, Grey
" 8 DarkGray, DarkGrey
" 9 Blue, LightBlue
" 10 Green, LightGreen
" 11 Cyan, LightCyan
" 12 Red, LightRed
" 13 Magenta, LightMagenta
" 14 Yellow, LightYellow
" 15 White
let g:colors_name = 'hypnos'
" Linking Group
highlight White ctermfg=white ctermbg=none cterm=none
" General
highlight LineNr ctermfg=lightGray ctermbg=black cterm=none
highlight SignColumn ctermfg=black ctermbg=black cterm=none
highlight VertSplit ctermfg=black ctermbg=black cterm=none
highlight CursorLine ctermfg=none ctermbg=black cterm=bold
highlight CursorLineNr ctermfg=red ctermbg=black cterm=bold
highlight Todo ctermfg=red ctermbg=white cterm=bold
highlight NvimInternalError ctermfg=red ctermbg=none cterm=bold
highlight Search ctermfg=green ctermbg=none cterm=bold
highlight PreProc ctermfg=white ctermbg=none cterm=none
highlight Visual ctermfg=red ctermbg=black cterm=bold
highlight Statement ctermfg=blue ctermbg=none cterm=none
highlight Delimiter ctermfg=magenta ctermbg=none cterm=none
highlight Special ctermfg=cyan ctermbg=none cterm=none
highlight WarningMsg ctermfg=red ctermbg=black cterm=none
highlight ModeMsg ctermfg=red ctermbg=none cterm=bold
highlight IncSearch ctermfg=black ctermbg=lightGray cterm=none
highlight ColorColumn ctermfg=black ctermbg=lightGray cterm=none
highlight MaxLineChar ctermfg=black ctermbg=yellow cterm=none
" tabs
highlight TabLineSel ctermfg=white ctermbg=black cterm=bold
highlight TabLineNumSel ctermfg=red ctermbg=black cterm=bold
highlight TabLineModSel ctermfg=blue ctermbg=black cterm=none
highlight TabLineNum ctermfg=gray ctermbg=black cterm=none
highlight TabLine ctermfg=gray ctermbg=black cterm=none
highlight TabLineMod ctermfg=gray ctermbg=black cterm=none
" Status line
highlight StatusLine ctermfg=white ctermbg=black cterm=none
highlight StatusLineRO ctermfg=red ctermbg=black cterm=bold
highlight StatusLineFile ctermfg=white ctermbg=black cterm=bold
highlight StatusLineChange ctermfg=blue ctermbg=black cterm=bold
highlight StatusLineNC ctermfg=white ctermbg=black cterm=none
highlight StatusLineTerm ctermfg=white ctermbg=black cterm=none
highlight StatusLineTermNC ctermfg=white ctermbg=black cterm=none
" Used for autocompletion
highlight! default link PMenu LineNr
highlight PMenuSel ctermfg=white ctermbg=red cterm=bold
" Directory
highlight Directory ctermfg=blue ctermbg=none cterm=bold
" Writting
highlight Underlined ctermfg=magenta ctermbg=black cterm=underline
highlight SpellLocal ctermfg=magenta ctermbg=none cterm=underline
highlight SpellRare ctermfg=blue ctermbg=none cterm=underline
highlight SpellBad ctermfg=red ctermbg=none cterm=underline
highlight SpellCap ctermfg=none ctermbg=red cterm=underline
highlight Folded ctermfg=white ctermbg=black cterm=bold
" Code
highlight Keyword ctermfg=blue ctermbg=none cterm=none
highlight Function ctermfg=white ctermbg=none cterm=none
highlight Comment ctermfg=gray ctermbg=none cterm=none
highlight LocalVariable ctermfg=magenta ctermbg=none cterm=none
highlight Float ctermfg=red ctermbg=none cterm=none
highlight Number ctermfg=red ctermbg=none cterm=none
highlight Boolean ctermfg=red ctermbg=none cterm=none
highlight String ctermfg=magenta ctermbg=none cterm=none
highlight Structure ctermfg=green ctermbg=none cterm=bold
highlight Type ctermfg=green ctermbg=none cterm=bold
highlight MatchParen ctermfg=magenta ctermbg=none cterm=bold
highlight Identifier ctermfg=cyan ctermbg=none cterm=none
highlight Operator ctermfg=white ctermbg=none cterm=none
highlight ColorColumn ctermfg=lightGray ctermbg=none cterm=none
" highlight @boolean ctermfg=red ctermbg=none cterm=none
" highlight @attribute ctermfg=green ctermbg=none cterm=none
" highlight @function ctermfg=cyan ctermbg=none cterm=none
" highlight @keyword.function ctermfg=blue ctermbg=none cterm=none
" highlight @keyword ctermfg=lightGray ctermbg=none cterm=none
" highlight @conditional ctermfg=lightGray ctermbg=none cterm=none
" highlight @repeat ctermfg=lightGray ctermbg=none cterm=none
" highlight @identifier ctermfg=lightGray ctermbg=none cterm=none
" highlight @variable ctermfg=blue ctermbg=none cterm=none
" highlight @variable.field ctermfg=white ctermbg=none cterm=none
" highlight @field ctermfg=white ctermbg=none cterm=none
" highlight @keyword ctermfg=lightGray ctermbg=none cterm=none
" highlight @keyword.operator ctermfg=lightGray ctermbg=none cterm=none
" highlight @keyword.return ctermfg=lightGray ctermbg=none cterm=none
" highlight @punctuation.bracket ctermfg=red ctermbg=none cterm=none
" highlight @operator ctermfg=red ctermbg=none cterm=none
" highlight @parameter ctermfg=green ctermbg=none cterm=none
" Markdown
highlight markdownH1 ctermfg=red ctermbg=none cterm=none
highlight markdownH2 ctermfg=yellow ctermbg=none cterm=none
highlight markdownH3 ctermfg=green ctermbg=none cterm=none
highlight markdownH4 ctermfg=blue ctermbg=none cterm=none
highlight markdownH5 ctermfg=cyan ctermbg=none cterm=none
highlight markdownH6 ctermfg=gray ctermbg=none cterm=none
" SQL
highlight sqlKeyword ctermfg=red ctermbg=none cterm=bold
" i3
highlight Special ctermfg=lightGray ctermbg=none cterm=none
"---------"
" PLUGINS "
"---------"
" Signify plugin + vim diff
highlight DiffDelete ctermfg=red ctermbg=black cterm=none
highlight DiffChange ctermfg=blue ctermbg=black cterm=none
highlight DiffAdd ctermfg=white ctermbg=black cterm=none
highlight DiffText ctermfg=yellow ctermbg=black cterm=none
" Neomake plugin
highlight NeomakeWarningSign ctermfg=yellow ctermbg=black
" quick-scope plugin
highlight QuickScopePrimary ctermfg=red cterm=underline
highlight QuickScopeSecondary ctermfg=yellow cterm=underline
highlight netrwMarkFile ctermfg=red cterm=underline
" NOT USED
"highlight CTagsMember-i no settings --
"highlight CTagsGlobalConstant-i no settings --
"highlight Ignore-i no settings --
"highlight Normal c0c5ce
"highlight CTagsImport-i no settings --
"highlight CTagsGlobalVariable-i no settings --
"highlight EnumerationValue-i no settings --
"highlight Union-i no settings --
"highlight Question-i no settings --
"highlight EnumerationName-i no settings --
"highlight DefinedName-i no settings --
"highlight LocalVariable-i no settings --
"highlight CTagsClass-i no settings --
"highlight clear-i no settings --
"highlight WildMenu ctermfg=none ctermbg=248 cterm=none
"highlight SpecialComment ctermfg=1 ctermbg=none cterm=none
"highlight Typedef ctermfg=60 ctermbg=none cterm=bold
"highlight Title ctermfg=189 ctermbg=black cterm=bold
"highlight PreCondit ctermfg=1 ctermbg=none cterm=none
"highlight StatusLineNC ctermfg=black ctermbg=66 cterm=bold
"highlight NonText c ctermfg=66 ctermbg=none cterm=none
"highlight ErrorMsg ctermfg=248 ctermbg=88 cterm=none
"highlight Debug ctermfg=1 ctermbg=none cterm=none
"highlight SpecialChar ctermfg=1 ctermbg=none cterm=none
"highlight Conditional ctermfg=1 ctermbg=none cterm=bold
"highlight StorageClass ctermfg=60 tc=none cterm=bold
"highlight StatusLine ctermfg=black ctermbg=1 cterm=bold
"highlight Label ctermfg=1 ctermbg=none cterm=bold
"highlight Character ctermfg=248 ctermbg=none cterm=none
"highlight VisualNOS ctermfg=black ctermbg=189 cterm=underline
"highlight ModeMsg ctermfg=white ctermbg=black cterm=bold
"highlight Define ctermfg=1 ctermbg=none cterm=none
"highlight MoreMsg ctermfg=1 ctermbg=none cterm=bold
"highlight SpellCap ctermfg=189 ctermbg=black cterm=underline
"highlight Exception ctermfg=1 ctermbg=none cterm=bold
"highlight Error ctermfg=248 ctermbg=88 cterm=none
"highlight SpecialKey c ctermfg=66 ctermbg=none cterm=none
"highlight Constant ctermfg=248 ctermbg=none cterm=none
"highlight Tag ctermfg=1 ctermbg=none cterm=none
"highlight Macro ctermfg=1 ctermbg=ONE cterm=none
"highlight cursorim ctermfg=black ctermbg=10 cterm=none
" Treesitter
"highlight @annotation ctermfg=lightGray ctermbg=black cterm=none
"highlight @attribute ctermfg=lightGray ctermbg=black cterm=none
"highlight @boolean ctermfg=lightGray ctermbg=black cterm=none
"highlight @character ctermfg=lightGray ctermbg=black cterm=none
"highlight @character.special ctermfg=lightGray ctermbg=black cterm=none
"highlight @comment ctermfg=lightGray ctermbg=black cterm=none
"highlight @conceal ctermfg=lightGray ctermbg=black cterm=none
"highlight @conditional ctermfg=lightGray ctermbg=black cterm=none
"highlight @constant ctermfg=lightGray ctermbg=black cterm=none
"highlight @constant.builtin ctermfg=lightGray ctermbg=black cterm=none
"highlight @constant.macro ctermfg=lightGray ctermbg=black cterm=none
"highlight @constructor ctermfg=lightGray ctermbg=black cterm=none
"highlight @debug ctermfg=lightGray ctermbg=black cterm=none
"highlight @define ctermfg=lightGray ctermbg=black cterm=none
"highlight @error ctermfg=lightGray ctermbg=black cterm=none
"highlight @exception ctermfg=lightGray ctermbg=black cterm=none
"highlight @field ctermfg=lightGray ctermbg=black cterm=none
"highlight @float ctermfg=lightGray ctermbg=black cterm=none
"highlight @function ctermfg=lightGray ctermbg=black cterm=none
"highlight @function.builtin ctermfg=lightGray ctermbg=black cterm=none
"highlight @function.call ctermfg=lightGray ctermbg=black cterm=none
"highlight @function.macro ctermfg=lightGray ctermbg=black cterm=none
"highlight @include ctermfg=lightGray ctermbg=black cterm=none
"highlight @keyword ctermfg=lightGray ctermbg=black cterm=none
"highlight @keyword.function ctermfg=lightGray ctermbg=black cterm=none
"highlight @keyword.operator ctermfg=lightGray ctermbg=black cterm=none
"highlight @keyword.return ctermfg=lightGray ctermbg=black cterm=none
"highlight @label ctermfg=lightGray ctermbg=black cterm=none
"highlight @math ctermfg=lightGray ctermbg=black cterm=none
"highlight @method ctermfg=lightGray ctermbg=black cterm=none
"highlight @method.call ctermfg=lightGray ctermbg=black cterm=none
"highlight @namespace ctermfg=lightGray ctermbg=black cterm=none
"highlight @none ctermfg=lightGray ctermbg=black cterm=none
"highlight @number ctermfg=lightGray ctermbg=black cterm=none
"highlight @operator ctermfg=lightGray ctermbg=black cterm=none
"highlight @parameter ctermfg=lightGray ctermbg=black cterm=none
"highlight @parameter.reference ctermfg=lightGray ctermbg=black cterm=none
"highlight @preproc ctermfg=lightGray ctermbg=black cterm=none
"highlight @property ctermfg=lightGray ctermbg=black cterm=none
"highlight @punctuation.bracket ctermfg=lightGray ctermbg=black cterm=none
"highlight @punctuation.delimiter ctermfg=lightGray ctermbg=black cterm=none
"highlight @punctuation.special ctermfg=lightGray ctermbg=black cterm=none
"highlight @repeat ctermfg=lightGray ctermbg=black cterm=none
"highlight @storageclass ctermfg=lightGray ctermbg=black cterm=none
"highlight @storageclass.lifetime ctermfg=lightGray ctermbg=black cterm=none
"highlight @strike ctermfg=lightGray ctermbg=black cterm=none
"highlight @string ctermfg=lightGray ctermbg=black cterm=none
"highlight @string.escape ctermfg=lightGray ctermbg=black cterm=none
"highlight @string.regex ctermfg=lightGray ctermbg=black cterm=none
"highlight @string.special ctermfg=lightGray ctermbg=black cterm=none
"highlight @symbol ctermfg=lightGray ctermbg=black cterm=none
"highlight @tag ctermfg=lightGray ctermbg=black cterm=none
"highlight @tag.attribute ctermfg=lightGray ctermbg=black cterm=none
"highlight @tag.delimiter ctermfg=lightGray ctermbg=black cterm=none
"highlight @text ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.danger ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.diff.add ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.diff.delete ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.emphasis ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.environment ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.environment.name ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.literal ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.math ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.note ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.reference ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.strike ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.strong ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.title ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.todo ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.underline ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.uri ctermfg=lightGray ctermbg=black cterm=none
"highlight @text.warning ctermfg=lightGray ctermbg=black cterm=none
"highlight @todo ctermfg=lightGray ctermbg=black cterm=none
"highlight @type ctermfg=lightGray ctermbg=black cterm=none
"highlight @type.builtin ctermfg=lightGray ctermbg=black cterm=none
"highlight @type.definition ctermfg=lightGray ctermbg=black cterm=none
"highlight @type.qualifier ctermfg=lightGray ctermbg=black cterm=none
"highlight @uri ctermfg=lightGray ctermbg=black cterm=none
"highlight @variable ctermfg=lightGray ctermbg=black cterm=none
"highlight @variable.builtin ctermfg=lightGray ctermbg=black cterm=none