Answers for "how to change terminal font size in vscode"

0

how to change terminal font size in vscode

{
  "fontshortcuts.defaultFontSize": 15,
  "fontshortcuts.defaultTerminalFontSize": 15,
  "fontshortcuts.step": 1
}
Posted by: Guest on September-18-2020
0

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"
Posted by: Guest on March-27-2021

Code answers related to "how to change terminal font size in vscode"

Browse Popular Code Answers by Language