codex-lv2-may-2025

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


Lesson: Basic Editor Customization

🎯 Objective

Set up color themes and configure minimap visibility to personalize your editor’s appearance and improve code readability.


âś… Step 1: Set the Color Theme

Create your .vscode/settings.json file and add this code:

{
    "workbench.colorTheme": "Default Dark+"
}

âś… Reminder


▶️ Try It!

🎨 Included Themes to Try

“Default Dark+”, “Default Light+”, “Dark (Visual Studio)”, “Light (Visual Studio)”, “Monokai”, “Monokai Dimmed”, “Solarized Dark”, “Solarized Light”, “Abyss”, “Kimbie Dark”, “Red”, “High Contrast”


âś… Step 2: Set minimap visibility

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

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

âś… Reminder


▶️ Try It!


âś… Summary

You learned how to:


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