-
Notifications
You must be signed in to change notification settings - Fork 0
/
getgo.code-workspace
46 lines (46 loc) · 1.29 KB
/
getgo.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
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": ["golang.go", "coolbear.systemd-unit-file"]
},
"settings": {
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#e7f1f0",
"activityBar.background": "#e7f1f0",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#c09ac4",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#e7f1f0",
"statusBar.background": "#c6dfdd",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#a5cdc9",
"statusBarItem.remoteBackground": "#c6dfdd",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#c6dfdd",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#c6dfdd99",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.color": "#c6dfdd"
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"cwd": ".",
"envFile": "${fileDirname}/.env",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}/cmd"
}
]
}
}