-
Notifications
You must be signed in to change notification settings - Fork 431
/
sublime-package.json
47 lines (47 loc) · 1.59 KB
/
sublime-package.json
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
{
"contributions": {
"settings": [
{
"file_patterns": [
"/Preferences.sublime-settings"
],
"schema": {
"properties": {
"theme.spacegray.tabs.height": {
"type": "string",
"enum": ["xlarge", "large", "normal", "small"],
"default": "normal",
"markdownDescription": "Controls size of file tabs. Valid values are `\"normal\"`, `\"large\"`, `\"xlarge\"` and `\"small\"`."
},
"theme.spacegray.tabs.auto_width": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether minimum file tab width."
},
"theme.spacegray.sidebar.row_height": {
"type": "string",
"enum": ["xlarge", "large", "normal", "small", "xsmall"],
"default": "normal",
"markdownDescription": "Controls size of file tabs. Valid values are `\"normal\"`, `\"large\"`, `\"xlarge\"` and `\"small\"`."
},
"theme.spacegray.sidebar.show_icons": {
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether to show folder and file icons in sidebar."
},
"theme.spacegray.sidebar.vcs_color_labels": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show vcs status of tracked files and folders by color of their labels in sidebar."
},
"theme.spacegray.sidebar.vcs_color_expanded": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to show vcs status of expanded folders by color of their labels in sidebar."
},
}
}
}
]
}
}