Skip to content

Commit b84537b

Browse files
committed
Add VS Code settings for Code Spaces
1 parent 682b6c6 commit b84537b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

wordcount/.vscode/settings.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"editor.fontSize": 20,
3+
"markdown.preview.fontSize": 20,
4+
"terminal.integrated.fontSize": 20,
5+
"editor.mouseWheelZoom": true,
6+
"terminal.integrated.mouseWheelZoom": true,
7+
"breadcrumbs.enabled": false,
8+
"editor.dragAndDrop": false,
9+
"editor.minimap.enabled": false,
10+
"editor.renderWhitespace": "all",
11+
"files.exclude": {
12+
"**/.*": true,
13+
"**/__pycache__": true
14+
},
15+
"window.commandCenter": false,
16+
"workbench.editorAssociations": {
17+
"*.md": "vscode.markdown.preview.editor"
18+
},
19+
"workbench.layoutControl.enabled": false,
20+
"python.testing.pytestArgs": ["tests"],
21+
"python.testing.pytestEnabled": true,
22+
"window.autoDetectColorScheme": true,
23+
"workbench.preferredDarkColorTheme": "GitHub Dark",
24+
"workbench.preferredLightColorTheme": "GitHub Light"
25+
}
26+

0 commit comments

Comments
 (0)