-
Notifications
You must be signed in to change notification settings - Fork 13
/
giveth2-positonic-full-stack.code-workspace
49 lines (49 loc) · 1.68 KB
/
giveth2-positonic-full-stack.code-workspace
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
{
"extensions": {
"recommendations": [
//Prettier is needed to conveniently format on save
"esbenp.prettier-vscode",
//And even better correctly lint everything according to standardJS
"numso.prettier-standard-vscode",
//To see our status with StandardJS we can use problem highlighting - in hindsight, properly configured this could be all we need
"chenxsan.vscode-standardjs",
//to get SVG previews
"simonsiefke.svg-preview",
]
},
"folders": [
{
"path": "."
},
{
"path": "../impact-graph"
}
],
"settings": {
// Differentiate our giveth2 workspace from other open VSCode windows
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#5144c2"
},
// "workbench.colorCustomizations": {
// "statusBar.background": "#c2449f",
// "statusBarItem.hoverBackground": "#cf6ab3",
// "titleBar.activeBackground": "#c2449f",
// "titleBar.inactiveBackground": "#c2449f99",
// "statusBar.foreground": "#e7e7e7",
// "titleBar.activeForeground": "#e7e7e7",
// "titleBar.inactiveForeground": "#e7e7e799",
// "activityBar.activeBackground": "#cf6ab3",
// "activityBar.activeBorder": "#4e601f",
// "activityBar.background": "#cf6ab3",
// "activityBar.foreground": "#15202b",
// "activityBar.inactiveForeground": "#15202b99",
// "activityBarBadge.background": "#4e601f",
// "activityBarBadge.foreground": "#e7e7e7"
// },
"peacock.color": "#C2449F",
"editor.multiCursorModifier": "ctrlCmd",
"editor.tabCompletion": "on",
"editor.snippetSuggestions": "top",
"editor.action.goToTypeDefinition": "on"
}
}