If you look at the vscode terminal - its too tiny. Heres the user settings that I have modified to create this result. I have searched how to change terminal fonts at vscode b
Go to Terminal >> Settings >>> font size as described in above screen shot and try updating desired font size and weight
Set the terminal.integrated.fontsize
in your user settings to override the original value. I have mine set to 20. I am old ;)
Code > Preferences > Settings > Features > Terminal. Here you can find Integrated: Font Size and change it to your desired size
Im sure there are a few answers to this. But to solve mine, I had to change the terminal.integraded.fontFamily
. Try these theme "Monaco" for instance. Add this line to your settings.
"terminal.integrated.fontFamily": "Monaco"
If the font size does not change and only increases the letter spacing, try a few checks:
This is my current setting as far as basic visuals for CLI and the editor:
"explorer.confirmDelete": false,
"workbench.sideBar.location": "left",
"workbench.statusBar.visible": true,
"editor.fontFamily": "Monaco",
"editor.fontSize": 12,
"terminal.integrated.fontFamily": "Hack",
"terminal.integrated.fontSize": 10,
"terminal.integrated.lineHeight":1,
"editor.tabSize": 2,
Again, these are checks you can do. I hope this helps cause it definitely took me a while to change my view of visual code terminal above to the one I have below now:
edit: fixed typo in link in item #4
Code > Preferences > Settings > Search "terminal font size" on the bar > change font size
Also use FontSize Shortcuts, then
Use Ctrl + + for incrementation font size,
Use Ctrl + - for decrementation font size.