Created
June 4, 2019 08:37
-
-
Save bolshchikov/51e60f46f6138e5d109e421d63cf1634 to your computer and use it in GitHub Desktop.
VSCode partial UI settings for FireFont
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
{ | |
"workbench.colorTheme": "GitHub Sharp", | |
"editor.minimap.enabled": false, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
//following will be in italic (=FlottFlott) | |
"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": [ | |
//following will be excluded from italics (VSCode has some defaults for italics) | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal.js", | |
"constant.numeric.json" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"explorer.openEditors.visible": 0, | |
"workbench.startupEditor": "newUntitledFile", | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontSize": 13, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"breadcrumbs.enabled": true, | |
"cSpell.userWords": [ | |
"ethereum" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment