-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbubackos.code-workspace
More file actions
43 lines (43 loc) · 1.04 KB
/
bubackos.code-workspace
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"java.configuration.updateBuildConfiguration": "automatic",
"python.pythonPath": "/usr/local/bin/python3",
"editor.tabSize": 4,
"editor.useTabStops": false,
"C_Cpp.dimInactiveRegions": false,
"cmake.cmakePath": "${workspaceFolder}/.wrappers/cmake",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/build/**": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/build/**": true
},
"todo-tree.expanded": true,
"todo-tree.filterCaseSensitive": true,
"terminal.integrated.env.linux": {
"PATH": "${workspaceFolder}/.wrappers:${env:PATH}"
},
"terminal.integrated.env.osx": {
"PATH": "${workspaceFolder}/.wrappers:${env:PATH}"
},
"todo-tree.tree.expanded": true,
"todo-tree.tree.filterCaseSensitive": true,
},
}