Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change vs code terminal font to non-monospace

Is it possible to change the vs code terminal font to a font that is non-monospace?

The font I am trying to use is Melso LG L Regular for Powerline .

When I try to change the terminal.integrated.fontFamily in the user settings I get this:

terminal font

Is there any way around this?

Thanks in advance 😃

like image 696
joshkmartinez Avatar asked Sep 12 '25 22:09

joshkmartinez


1 Answers

Use below settings. It worked for me in VScode terminal in ubuntu.

{
    //"terminal.integrated.fontFamily": "'Ubuntu Mono derivative Powerline', 'fontawesome'",
    "terminal.integrated.fontFamily": "'Meslo LG M DZ for Powerline', 'fontawesome'",
    "terminal.integrated.fontSize": 16

}

Please also make sure that you have installed powerline and fontawesome icons packages properly otherwise it might not work.

Use any of the above settings but make sure that powerline variant is installed. Below is my terminals output from VSCode terminal.

enter image description here

My Vscode version:

enter image description here

like image 117
WitVault Avatar answered Sep 14 '25 14:09

WitVault