My question is simple. To enable FiraCode ligatures in VScode, you must add this line to settings.json
:
"editor.fontLigatures": true
To enable a stylistic set (i.e. for sans serif lowercase 'r' or dotted zero), you have to add this line to the same file:
"editor.fontLigatures": "'ss01', 'zero'"
This results in a conflict because you can't have 2 properties of the same name in JSON. One of the settings will be ignored. Is there a workaround?
Thank you.