Skip to content

Configuring VSCode

Valk edited this page Oct 13, 2024 · 20 revisions

Visual Studio Code

  1. Install Visual Studio Code
  2. In VSCode > Open Folder > Template\GodotProject
  3. Install the extensions that should automatically get recommended to you
  4. Press F1 and type C# Godot: Select Project and select the Godot project (a bit buggy but seems to resolve itself after some time)
  5. Setup VSCode Debugging

Optional Settings

These are my user settings, use them if you want.

{
    "editor.fontSize": 24,
    "editor.renderWhitespace": "none",
    "editor.autoClosingDelete": "always",
    "editor.mouseWheelScrollSensitivity": 1.5,
    "editor.formatOnPaste": true,
    "editor.formatOnType": true,
    "workbench.colorTheme": "Tokyo Night Storm",
    "explorer.confirmDelete": false,
    "explorer.confirmDragAndDrop": false,
    "breakpointHighlight.backgroundColor": "#742527"
}

Clone this wiki locally