- Instant help with your Developer coding problems

Change font size in VS Code

Question:
How to change font size in VS Code?
Answer:
// Change editor font size
File -> Preferences -> Settings -> Text Editor -> Font -> Font Size

// Change IDE font size
CTRL + // to increase
CTRL - // to decrease
CTRL 0 // reset to default
Description:

In Visual Studio Code you can change the font size in settings. Go to File -> Preferences -> Settings -> Text Editor -> Font -> Font Size and set the font size you want. 

Note that this setting only changes the font size inside the code editor and not for the complete IDE. If you want to increase all font sizes - for example for a presentation - you can use the CTRL + keyboard shortcut. To decrease font sizes use CTRL - and to reset to the original value use CTRL 0 .

Share "How to change font size in VS Code?"