Skip to content

Instantly share code, notes, and snippets.

@danharper
Last active August 18, 2018 14:26
Show Gist options
  • Save danharper/c0bb1ba89a2fb2f3218e856b99cdf76d to your computer and use it in GitHub Desktop.
Save danharper/c0bb1ba89a2fb2f3218e856b99cdf76d to your computer and use it in GitHub Desktop.

Revisions

  1. danharper renamed this gist Aug 18, 2018. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. danharper created this gist Aug 18, 2018.
    42 changes: 42 additions & 0 deletions vscode-settings.json
    Original 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": ""
    }
    }
    ]
    },
    }