codex-lv2-may-2025

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


Lesson: File Management Settings

🎯 Objective

Configure auto-save and tab label formatting to streamline your file management workflow.


Step 5: Enable Auto-Save

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"
}

Reminder


▶️ Try It!


Step 6: Shorten Tab Labels

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"
}

Reminder


▶️ Try It!


Summary

You learned how to:


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