How to use Terminus (TTF) font in Microsoft Visual Code Editor

fontsvisual-studio-code

I'm successfully using Terminus TTF font in Visual Studio. I downloaded: https://files.ax86.net/terminus-ttf/files/latest-windows.zip

enter image description here

How to use Terminus font in Visual Studio Code? What is the name of the font. I tried:

  • Terminus
  • Terminus (TTF)
  • Terminus TTF

Where can one know the font name to use in editors like Sublime, Studio code, …
enter image description here

Best Answer

All I needed was to escape fontFamily value:

"editor.fontFamily": "Terminus \\(TTF\\)",
"editor.fontSize": 16,
Related Question