Skip to content

Instantly share code, notes, and snippets.

@nicholasxjy
Created February 9, 2021 01:51
Show Gist options
  • Save nicholasxjy/bd8049a2cbc5faa4767471eab87aa5a7 to your computer and use it in GitHub Desktop.
Save nicholasxjy/bd8049a2cbc5faa4767471eab87aa5a7 to your computer and use it in GitHub Desktop.
some vscode settings
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "Attributes",
"scope": "entity.other.attribute-name",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "ES6 Modules",
"scope": "keyword.operator.module.js",
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Keyword, Storage",
"scope": [
"keyword",
"storage"
],
"settings": {
"fontStyle": "italic"
}
},
{
"name": "Keyword Control",
"scope": [
"keyword.control"
],
"settings": {
"fontStyle": "italic"
}
},
{
"name": "ES6 Classes",
"scope": "entity.name.class.js",
"settings": {
"fontStyle": "italic"
}
}
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment