-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
54 lines (48 loc) · 1.25 KB
/
config.py
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
from voluptuous import Any
from voluptuous.schema_builder import Required, Schema
color_schema = Any(str, { Required('dark'): str, Required('light'): str })
hl_schema_def = {
Required('set'): Any(str, [str]),
'fg': color_schema,
'bg': color_schema,
'deco': str,
'ul': color_schema
}
hl_schema = Any(hl_schema_def, {
Required('set'): Any(str, [str]),
Required('from'): str
})
config_schema = Schema({
'colors': { str: color_schema },
'highlights': [hl_schema_def],
Required('kitty'): {
Required('destinations'): {
Required('dark'): str,
Required('light'): str
},
'header': str
},
Required('vim'): {
Required('destination'): str,
'header': str,
Required('highlight'): [hl_schema]
},
'text-mate': {
Required('destination'): str,
Required('author'): str,
Required('name'): str,
'global': {
'foreground': str,
'background': str,
'caret': str,
'invisibles': str,
'lineHighlight': str,
'selection': str
},
'highlight': [hl_schema]
},
'custom': [{
Required('destination'): str,
Required('content'): str
}]
})