-
Notifications
You must be signed in to change notification settings - Fork 2
/
rvir-template.code-workspace
63 lines (63 loc) · 1.96 KB
/
rvir-template.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"terminal.integrated.fontFamily": "'FiraCode Nerd Font Mono', Consolas, 'Courier New', monospace",
"editor.fontFamily": "'FiraCode Nerd Font Mono', Consolas, 'Courier New', monospace",
"workbench.colorCustomizations": {
"terminal.background": "#0C0D0E",
"terminal.foreground": "#B7B8B9",
"terminalCursor.background": "#B7B8B9",
"terminalCursor.foreground": "#B7B8B9",
"terminal.ansiBlack": "#0C0D0E",
"terminal.ansiBlue": "#3182BD",
"terminal.ansiBrightBlack": "#737475",
"terminal.ansiBrightBlue": "#3182BD",
"terminal.ansiBrightCyan": "#80B1D3",
"terminal.ansiBrightGreen": "#31A354",
"terminal.ansiBrightMagenta": "#756BB1",
"terminal.ansiBrightRed": "#E31A1C",
"terminal.ansiBrightWhite": "#FCFDFE",
"terminal.ansiBrightYellow": "#DCA060",
"terminal.ansiCyan": "#80B1D3",
"terminal.ansiGreen": "#31A354",
"terminal.ansiMagenta": "#756BB1",
"terminal.ansiRed": "#E31A1C",
"terminal.ansiWhite": "#B7B8B9",
"terminal.ansiYellow": "#DCA060"
},
"typescript.tsdk": "node_modules/typescript/lib"
},
"launch": {
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "rdbg",
"name": "Debug Rails App",
"request": "launch",
"command": "${workspaceRoot}/bin/rails",
"script": "server",
"askParameters": false
},
{
"type": "rdbg",
"name": "Debug current file with rdbg",
"request": "launch",
"script": "${file}",
"args": [],
"askParameters": true
},
{
"type": "rdbg",
"name": "Attach with rdbg",
"request": "attach"
}
]
}
}