codex-lv2-may-2025

Level Navigation: 0 1 2 3 4 5 Current Level: 6


Lesson: Advanced Settings and Exploration

🎯 Objective

Explore additional settings, understand complex configurations, and create a complete settings file with all learned features.


🧩 Challenge: Explore More Settings

Setting Example Value
"editor.minimap.enabled" false — boolean, no quotes
"editor.lineNumbers" "on" — string, quotes needed
"files.exclude" { "**/node_modules": true } — true/false, no quotes for booleans
"search.exclude" { "**/dist": true } — same as above
"workbench.sideBar.location" "right" — string, use quotes

✅ Reminder: Every key is quoted, strings are quoted, but numbers and booleans are not quoted.


✅ Complete Example Settings File

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.


✅ Summary

You learned how to:


🎯 Next Steps


Level Navigation: 0 1 2 3 4 5 Current Level: 6