https://github.com/kencrocken/FiraCodeiScript
{
"security.workspace.trust.untrustedFiles": "open",
"php.validate.executablePath": "php",
"git.autofetch": true,
"security.allowedUNCHosts": [
"wsl.localhost"
],
"redhat.telemetry.enabled": false,
"files.autoSave": "afterDelay",
"explorer.compactFolders": false,
"editor.tabSize": 8,
"workbench.tree.indent": 16,
"workbench.colorTheme": "One Dark Pro",
"editor.formatOnPaste": true,
"editor.lineHeight": 30,
"editor.fontFamily": "'Fira Code iScript', 'Fira Code', 'JetBrains Mono', 'Courier New', monospace",
"editor.fontLigatures": true,
// Overrides editor syntax colors and font style from the currently selected color theme.
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope" : [
// Following will be in italic
"comment",
"entity.name.type.class", // class name
"keyword", // import, export, return ...
"storage.modifier", // static keyword
"support.class.builtin",
"keyword.control",
"constant.language",
"entity.other.attribute-name",
"entity.name.method"
],
"settings": {
"fontStyle": "italic bold"
}
},
{
// Following should be excluded from italic
"scope": [
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
},
}