Created
December 19, 2020 14:30
-
-
Save cherscarlett/7b3d12cd3e6ac98dba33fb6a1f4de01a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"window.zoomLevel": 0, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.fontFamily": "Victor Mono", | |
"editor.fontLigatures": true, | |
"workbench.colorTheme": "SynthWave '84", | |
"synthwave84.brightness": "1.5", | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"comment", | |
"entity.name.type.class", //class names | |
"keyword", //import, export, return… | |
"constant", //String, Number, Boolean…, this, super | |
"storage.modifier", //static keyword | |
"storage.type.class.js", //class keyword | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal.js", | |
"constant.numeric.json" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"editor.fontWeight": "normal" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment