Last active
August 18, 2018 14:26
-
-
Save danharper/c0bb1ba89a2fb2f3218e856b99cdf76d to your computer and use it in GitHub Desktop.
Revisions
-
danharper renamed this gist
Aug 18, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
danharper created this gist
Aug 18, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,42 @@ { "editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace", "editor.fontSize": 13, "window.zoomLevel": 0, "editor.tabSize": 2, "editor.fontLigatures": true, "workbench.colorTheme": "Default Light+", "editor.cursorBlinking": "solid", "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": "" } } ] }, }