change terminal font in vscode code example

Example 1: how to change terminal font size in vscode

{
  "fontshortcuts.defaultFontSize": 15,
  "fontshortcuts.defaultTerminalFontSize": 15,
  "fontshortcuts.step": 1
}

Example 2: how to change terminal font in vscode

// Command Prompt
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe"
// PowerShell
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
// Git Bash
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\git-cmd.exe",
"terminal.integrated.shellArgs.windows": [
  "--command=usr/bin/bash.exe",
  "-l",
  "-i"
]
// Bash on Ubuntu (on Windows)
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\bash.exe"

Tags:

C Example