Created
May 23, 2019 19:51
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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