Skip to content

Instantly share code, notes, and snippets.

@bottlenecked
Created May 23, 2019 19:51
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bottlenecked/50bd2c2c655a8de8c7b250751dd4d7dd to your computer and use it in GitHub Desktop.
Save bottlenecked/50bd2c2c655a8de8c7b250751dd4d7dd to your computer and use it in GitHub Desktop.
Visual Studio Code settings for coloring additional Elixir-specific symbols (from my dark theme, but one can always experiment with the colors)
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "atoms and such",
"scope": "constant.other.symbol.elixir",
"settings": {
"foreground": "#489CC8"
}
},
{
"name": "module attributes",
"scope": "variable.other.readwrite.module.elixir",
"settings": {
"foreground": "#e9551b"
}
},
{
"name": "ignored variable",
"scope": "comment.unused.elixir",
"settings": {
"foreground": "#999"
}
},
{
"name": "underscore",
"scope": "comment.wildcard.elixir",
"settings": {
"foreground": "#999"
}
},
{
"name": "operators",
"scope": "keyword.operator",
"settings": {
"foreground": "#dfdf7e"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment