This isn\'t so much a coding question as it is about the visual studio code editor. What I want to do is use source code pro in the editor, but I don\'t know what to change
This is tested in VSCode 1.30.2 in Windows:
font-familyGo to Text Editor => Font Family => Change value (font family names with a blank might require single quotes). Example:
'Fira Code', Consolas, 'Courier New', monospace
Enable font ligatures (if needed)
Note: after step 1, you can also press Open Settings (top-right corner) to edit directly the json settings. Example:
{
"editor.fontFamily": "'Fira Code', Consolas, 'Courier New', monospace",
"editor.fontLigatures": true
}