Skip to content

Instantly share code, notes, and snippets.

@TwitchBronBron
Created May 10, 2019 18:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TwitchBronBron/c68e087272150676d98a3363487c704e to your computer and use it in GitHub Desktop.
Save TwitchBronBron/c68e087272150676d98a3363487c704e to your computer and use it in GitHub Desktop.
Example of how to customize specific textmate rutes
//https://stackoverflow.com/questions/46034188/add-an-operator-to-visual-studio-code-theme-in-settings-json
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "keyword.operator.word",
"settings": {
"foreground": "#569BD2"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment