codex-lv2-may-2025

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


Lesson: Text Editing Settings

🎯 Objective

Enable word wrap and format-on-save features to enhance your text editing experience and maintain code quality.


βœ… Step 3: Enable Word Wrap

Update your ./vscode/settings.json file to look like this:

{
    "workbench.colorTheme": "Default Dark+",
    "editor.minimap.enabled": true,
    "editor.wordWrap": "on"
}

βœ… Reminder


▢️ Try It!


βœ… Step 4: Format on 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
}

βœ… Reminder


▢️ Try It!


βœ… Summary

You learned how to:


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