How to customize VS Code Terminal Font
Customizing the Visual Studio Code Terminal font is useful, so you could bring over your desired look and feel into VS Code.
- In your project directory, add a file in the subdirectory
.vscode/settings.json
. -
{ // Controls the font family of the terminal, this defaults to `editor.fontFamily`'s value. "terminal.integrated.fontFamily": "JetBrainsMono Nerd Font", "terminal.integrated.fontSize": 12 }