-
Notifications
You must be signed in to change notification settings - Fork 3
/
vscode.json
114 lines (113 loc) · 2.98 KB
/
vscode.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
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
{
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"terminal.integrated.shell.osx": "/bin/zsh",
"editor.folding": false,
"[typescript]": {
"editor.defaultFormatter": "ms-vsliveshare.vsliveshare"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.confirmSync": false,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"go.coverOnSave": true,
"go.testOnSave": true,
"go.autocompleteUnimportedPackages": true,
"editor.renderWhitespace": "all",
"editor.minimap.enabled": false,
"workbench.colorCustomizations": {
"terminal.foreground": "#ffffff",
"foreground": "#ffffff",
"editor.background": "#000000",
"activityBar.background": "#000000",
"panel.background": "#000000",
"panel.border": "#222222",
"sideBar.background": "#000000",
"sideBar.foreground": "#999999",
"contrastBorder": "#222222",
"statusBar.background": "#222222",
"badge.background": "#222222",
"activityBarBadge.background": "#444444",
"editorSuggestWidget.background": "#000000",
"editorSuggestWidget.selectedBackground": "#444444",
"editorHoverWidget.background": "#000000"
},
"workbench.iconTheme": null,
"files.associations": {
"*.tf": "terraform"
},
"terraform.path": "/usr/local/bin/terraform",
"git.autofetch": true,
"go.vetOnSave": "workspace",
"editor.hover.delay": 100,
"editor.tabSize": 2,
"workbench.editor.showIcons": false,
"workbench.editor.tabCloseButton": "off",
"workbench.activityBar.visible": false,
"explorer.decorations.badges": false,
"explorer.decorations.colors": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": ["variable", "constant", "variable.parameter", ""],
"settings": {
"foreground": "#ffffff"
}
},
{
"scope": ["constant.numeric"],
"settings": {
"foreground": "#e2ffd2"
}
},
{
"scope": ["keyword"],
"settings": {
"foreground": "#74bdf9"
}
},
{
"scope": ["entity.name.function"],
"settings": {
"foreground": "#ffffc4"
}
},
{
"scope": [
"storage.type.string.go",
"storage.type.boolean.go",
"entity.name.type"
],
"settings": {
"foreground": "#66ffe0"
}
},
{
"scope": ["keyword.control"],
"settings": {
"foreground": "#ffb1f9"
}
},
{
"scope": ["support.function", "constant.language"],
"settings": {
"foreground": "#67bbff"
}
}
]
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveshare.authenticationProvider": "GitHub",
"typescript.tsserver.trace": "verbose"
}