-
Notifications
You must be signed in to change notification settings - Fork 0
/
ayu-dark.prytheme.rb
51 lines (46 loc) · 1.04 KB
/
ayu-dark.prytheme.rb
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
t = PryTheme.create :name => 'ayu-dark' do
author :name => 'david942j'
description 'Based on github:ayu-theme/ayu-vim'
tag = 'light_blue02'
keyword_c = 'tan'
constant_c = 'perhydor'
define_theme do
class_ tag
class_variable tag
comment 'seroburomalinovyj01'
constant tag
error 'tenne', [:italic]
float constant_c
global_variable tag
inline_delimiter 'pistachio01'
instance_variable tag
integer constant_c
keyword keyword_c
method 'saumon'
predefined_constant constant_c
symbol constant_c
regexp do
self_ keyword_c
char keyword_c
content 'moss_green'
delimiter 'moss_green'
modifier 'pale_cornflower_blue'
escape keyword_c
end
shell do
self_ keyword_c
char keyword_c
content 'moss_green'
delimiter keyword_c
escape keyword_c
end
string do
self_ keyword_c
char keyword_c
content 'moss_green'
delimiter keyword_c
escape keyword_c
end
end
end
PryTheme::ThemeList.add_theme(t)