-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnh.code-workspace
69 lines (69 loc) · 1.86 KB
/
nh.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"folders": [
{
"path": "."
},
{
"path": "./frontend"
},
{
"path": "./backend"
}
],
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "node-terminal",
"name": "frontend dev",
"request": "launch",
"command": "npm run dev",
"cwd": "${workspaceFolder:frontend}"
},
{
"name": "backend dev",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder:backend}/main.go",
"args": ["serve", "--dev"]
}
]
},
"settings": {
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#65c89b",
"activityBar.background": "#65c89b",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#945bc4",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#65c89b",
"statusBar.background": "#42b883",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#359268",
"statusBarItem.remoteBackground": "#42b883",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#42b883",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#42b88399",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.color": "#42b883",
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[sql]": {
"editor.defaultFormatter": "adpyke.vscode-sql-formatter"
},
"[go]": {
"editor.defaultFormatter": "golang.go"
},
"editor.formatOnSave": true
}
}