Skip to content

Instantly share code, notes, and snippets.

@Lodo4ka
Created December 26, 2018 07:23
Show Gist options
  • Save Lodo4ka/d80307670cc9bccd8430af88fa99e4d2 to your computer and use it in GitHub Desktop.
Save Lodo4ka/d80307670cc9bccd8430af88fa99e4d2 to your computer and use it in GitHub Desktop.
"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
"invalid",
"variable.language",
"markup.quote",
"punctuation.definition.comment",
"markup",
"markup.bold",
"markup.changed",
"markup.deleted",
"markup.heading",
"markup.inline.raw",
"markup.inserted",
"markup.italic",
"markup.list",
"markup.list.numbered",
"markup.list.unnumbered",
"markup.other",
"markup.quote",
"markup.raw",
"markup.underline",
"markup.underline.link",
"storage",
"storage.modifier",
"storage.type",
"string",
"string.interpolated",
"string.other",
"string.quoted",
"string.quoted.double",
"string.quoted.other",
"string.quoted.single",
"string.quoted.triple",
"string.regexp",
"string.unquoted",
"strong",
"support",
"support.class",
"support.constant",
"support.function",
"support.other",
"support.type",
"support.type.property-name",
"support.variable",
],
"settings": {
"fontStyle": "italic"
}
}, ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment