-
Notifications
You must be signed in to change notification settings - Fork 9
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
F1
and typeC# Godot: Select Project
and select the Godot project (a bit buggy but seems to resolve itself after some time) - Setup VSCode Debugging
You can get your VSCode to look like this with the Doki Theme
extension. There are many themes, wallpapers and stickers for you to choose from.
If you want to remove the bold text like I have done then you will need to install the Custom CSS and JS Loader
extension. Add "vscode_custom_css.imports": [""]
to your settings.json
and add the path to your custom.css
file. For example "file:///C:/Users/VALK-DESKTOP/Documents/custom.css"
.
Custom CSS file should look like this.
* {
font-weight: normal !important;
}
I personally like the following Doki color themes.
- Astolfo (Pink / Orange / Red)
- Monika (Green)
- Coconut (Light Blue)
- Nino (Green / Blue / Pink)
- Echidna (Dark Contrast)
- Gray (Light Contrast)
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,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"breakpointHighlight.backgroundColor": "#742527"
}