-
Notifications
You must be signed in to change notification settings - Fork 10
Configuring VSCode
Valk edited this page Oct 13, 2024
·
20 revisions
- Install Visual Studio Code
- In VSCode > Open Folder >
Template\GodotProject - Install the extensions that should automatically get recommended to you
- Press
F1and typeC# Godot: Select Projectand select the Godot project (a bit buggy but seems to resolve itself after some time) - Setup VSCode Debugging
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"
}