-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.48 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "vim-theme",
"displayName": "Vim Theme",
"description": "A vim theme for vscode",
"version": "1.1.8",
"author": "Harry Hopkinson",
"publisher": "HarryHopkinson",
"license": "MIT",
"engines": {
"vscode": "^1.40.1"
},
"categories": [
"Themes"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#3c3836",
"theme": "dark"
},
"homepage": "https://github.com/Harry-Hopkinson/vim-vscode-theme",
"repository": {
"type": "git",
"url": "https://github.com/Harry-Hopkinson/vim-vscode-theme.git"
},
"contributes": {
"themes": [
{
"label": "Vim Dark Medium",
"uiTheme": "vs-dark",
"path": "./themes/vim-dark-medium.json"
},
{
"label": "Vim Dark Hard",
"uiTheme": "vs-dark",
"path": "./themes/vim-dark-hard.json"
},
{
"label": "Vim Dark Soft",
"uiTheme": "vs-dark",
"path": "./themes/vim-dark-soft.json"
},
{
"label": "Vim Light Medium",
"uiTheme": "vs",
"path": "./themes/vim-light-medium.json"
},
{
"label": "Vim Light Hard",
"uiTheme": "vs",
"path": "./themes/vim-light-hard.json"
},
{
"label": "Vim Light Soft",
"uiTheme": "vs",
"path": "./themes/vim-light-soft.json"
},
{
"label": "Vim Deep Dark",
"uiTheme": "vs-dark",
"path": "./themes/vim-deep-dark.json"
}
]
},
"private": false
}