Skip to content

Instantly share code, notes, and snippets.

@sambacha
Created August 10, 2024 20:16
Show Gist options
  • Save sambacha/027b330d329ac3e4c2f0beb81378d2fa to your computer and use it in GitHub Desktop.
Save sambacha/027b330d329ac3e4c2f0beb81378d2fa to your computer and use it in GitHub Desktop.
"editor.tokenColorCustomizations": {
"[*Light*]": {
"textMateRules": [
{
"scope": "ref.matchtext",
"settings": {
"foreground": "#000"
}
}
]
},
"[*Dark*]": {
"textMateRules": [
{
"scope": "ref.matchtext",
"settings": {
"foreground": "#fff"
}
}
]
},
"textMateRules": [
{
"scope": "criticmarkup.addition",
"settings": {
"foreground": "#00bb00"
}
},
{
"scope": "criticmarkup.deletion",
"settings": {
"foreground": "#dd0000"
}
},
{
"scope": "criticmarkup.substitution",
"settings": {
"foreground": "#ff8600"
}
},
{
"scope": "criticmarkup.comment",
"settings": {
"foreground": "#0000bb"
}
},
{
"scope": "criticmarkup.highlight",
"settings": {
"foreground": "#aa53a9"
}
},
{
"scope": "keyword.other.dotenv",
"settings": {
"foreground": "#FF000000"
}
},
{
"scope": "keyword.control.bats",
"settings": {
"foreground": "#9f1fd1",
"fontStyle": "italic"
}
},
{
"scope": "support.function.bats",
"settings": {
"foreground": "#d41515",
"fontStyle": "italic"
}
},
{
"scope": "support.variable.bats",
"settings": {
"foreground": "#329432",
"fontStyle": "italic"
}
}
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment