Level Navigation: 0 | 1 | 2 | 3 | 4 | Current Level: 5 | 6 |
Create a complete settings file that combines all the configurations learned in previous levels.
Update your ./vscode/settings.json
file to look like this:
{
"workbench.colorTheme": "Default Dark+",
"editor.minimap.enabled": true,
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"files.autoSave": "afterDelay",
"workbench.editor.labelFormat": "short"
}
All strings here are quoted, and numbers and booleans are not quoted, following JSON rules.
You learned how to:
Level Navigation: 0 | 1 | 2 | 3 | 4 | Current Level: 5 | 6 |