Is there a way to change the environment font size in Visual Studio Code? Stuff like IntelliSense box, debug panel, file names, etc.
I know how to change the editor\
A Simple approach to change the Font Size in Visual Studio Work Environment :
Go To : File -> Preferences -> Settings OR Press CTRL+, i.e. CTRL + COMMA.
This will open settings.json.
You can see 3 tabs there :
Go to User Settings and Add this :
{
"editor.fontSize": 16
}
Now just save and close the file.
In above code, 16 represents the font size. Increase of Decrease as per your wish.