Setup Visual Studio Code (vscode)

  1. Download vscode

  2. Optional but recommended

    1. Fira Code font for font ligatures

      1. click download

      2. extract the zip

      3. open the ttf folder

      4. select all the fonts then right click and select open

  3. Settings (CMD + ,)

    {
        "editor.minimap.enabled": false,
        "editor.fontFamily": "Fira Code",
        "editor.fontLigatures": true,
        "editor.fontSize": 14,
        "git.confirmSync": false,
        "workbench.iconTheme": "vscode-icons",
        "editor.formatOnSave": true,
        "git.enableSmartCommit": true,
    }

Last updated