!!! VS Code Setup

(VSCode, a.k.a. Visual Studio Code)

A lot of settings go into {{C:\Users\John\AppData\Roaming\Code\User\settings.json}} (or wherever).

!! Theme

Default light

!! Highlight current line

* {{workbench.colorCustomizations}}
** {{editor.lineHighlightBackground}}
** {{editor.lineHighlightBorder}}

!! Vertical guide at 120 characters

{{{
    "editor.rulers": [
        {
            "color": "#ff000040",
            "column": 120
        },
    ]
}}}

!! Brace matching

* {{workbench.colorCustomizations}}
** {{editorBracketMatch.background}}
** {{editorBackgroundMatch.border}}