'How to make fonts in VSCode like in Android Studio
Solution 1:[1]
I don't know the exact font Android Studio uses, but you can change your editor font to a monospace font like this:
Open your VS code settings file by bringing up the command palette (Ctrl+Shift+P) and run the Preferences: Open Settings (JSON)
command. Add the following line:
"editor.fontFamily": "Consolas, 'Courier New', monospace",
The leftmost existing font that is available on your PC is used, the remaining ones are fallback options. If you know exactly which installed font you want to use you can simply set it to this value:
"editor.fontFamily": "My Favourite Font",
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | carlfriedrich |