-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.code-workspace
More file actions
74 lines (74 loc) · 2.34 KB
/
project.code-workspace
File metadata and controls
74 lines (74 loc) · 2.34 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
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
70
71
72
73
74
{
// Neutral baseline workspace: safe UX defaults only.
// No environment, toolchain, or course-specific behavior.
"folders": [
{
"path": "."
}
],
"settings": {
"editor.bracketPairColorization.enabled": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.detectIndentation": false,
"editor.fontSize": 16,
"editor.formatOnSave": false,
"editor.guides.bracketPairs": true,
"editor.guides.highlightActiveIndentation": true,
"editor.guides.indentation": true,
"editor.lineHeight": 22,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "selection",
"editor.rulers": [
80,
100
],
"editor.semanticHighlighting.enabled": true,
"editor.smoothScrolling": true,
"editor.tabSize": 4,
"explorer.compactFolders": false,
"explorer.confirmDelete": true,
"explorer.confirmDragAndDrop": true,
"extensions.ignoreRecommendations": false,
"files.associations": {
"*.md": "markdown",
"*.tpp": "cpp"
},
"files.autoGuessEncoding": false,
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.git": true
},
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"git.autofetch": true,
"git.enableSmartCommit": true,
"search.exclude": {
"**/build": true,
"**/*.aux": true,
"**/*.log": true,
"**/*.out": true,
"**/*.synctex.gz": true,
"**/*.toc": true
},
"terminal.integrated.enablePersistentSessions": true,
"workbench.editor.enablePreview": false,
"workbench.startupEditor": "none",
"workbench.tree.indent": 16
},
"extensions": {
"recommendations": [
"tal7aouy.theme",
"ms-python.debugpy",
"ms-python.python",
"ms-python.python-environments",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-cell-tags",
"ms-toolsai.jupyter-keymap",
"ms-toolsai.jupyter-renderers"
]
}
}