-
Notifications
You must be signed in to change notification settings - Fork 17
/
plugins.code-workspace
39 lines (39 loc) · 974 Bytes
/
plugins.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"VSCodeCounter.showInStatusBar": true,
"files.associations": {
"*.cppx": "cpp",
"string": "cpp",
"deque": "cpp",
"list": "cpp",
"vector": "cpp",
"typeinfo": "cpp",
"functional": "cpp",
"*.tcc": "cpp",
"array": "cpp",
"bitset": "cpp",
"initializer_list": "cpp",
"regex": "cpp"
},
"sqltools.connections": [
{
"mysqlOptions": {
"authProtocol": "default"
},
"previewLimit": 1000,
"server": "localhost",
"port": 3306,
"driver": "MySQL",
"name": "vscode",
"database": "h4",
"username": "phil",
"password": "CanonD60"
}
]
}
}