DEV Community

Discussion on: Installing A New Font for VS Code - In THREE(3) Simple Steps

Collapse
 
quantme profile image
Quantme

In the case of some fonts it's hard to know what name it must be typed; in my case (Windows) the setting that works in settings.json file is wrapping the font name in single quotation marks:

{
  "editor.fontFamily": "'Fira Code', 'Fira Code Retina', 'Fira Code Light', 'Courier New', monospace"
}
Enter fullscreen mode Exit fullscreen mode