- Download and install both FiraCode and FlottFlott (or another cursive alternative if you want)
- Install VSCode Extension: Custom CSS and JS Loader
- Save styles.css on your desktop
- Update the User settings (settings.json) in VSCode. (note: don’t forget to change the path “ vscode_custom_css.imports”)
- Ctrl + CMD + P -> Reload Custom JS and CSS
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"vscode_custom_css.imports": ["file:///Users/zamamoha/Desktop/styles.css"]
} Code-Sprache: JSON / JSON mit Kommentaren (json)
styles.css
.type.storage,.type.storage.declaration, .storage.class.modifier {
font-family: 'flottflott';
font-size: 1.7em;
}
.type.storage.arrow.function {
font-family: 'Fira Code'
}
.decorator.name, .decorator.punctuation:not(.block), .import.keyword {
font-family: 'flottflott';
font-size: 1.7em;
color: #68f39b!important;
}
.attribute-name {
font-family: 'flottflott';
font-size: 1.5em;
}
.html.quoted.double {
color: #a6f3a6!important;
}
.comment {
color: #c5c5fd!important;
}
.comment:not(.punctuation) {
font-family: flottflott;
font-size: 1.5em;
}Code-Sprache: CSS (css)
Quelle: https://medium.com/@zamamohammed/multiple-fonts-alternative-to-operator-mono-in-vscode-7745b52120a0