Skip to content

Instantly share code, notes, and snippets.

@zephyrtronium
Created March 18, 2021 17:34
Show Gist options
  • Select an option

  • Save zephyrtronium/fd5538c0e09e035930c22ad169af066d to your computer and use it in GitHub Desktop.

Select an option

Save zephyrtronium/fd5538c0e09e035930c22ad169af066d to your computer and use it in GitHub Desktop.
vscode settings with rainglow fixes
{
"go.useLanguageServer": true,
"workbench.colorTheme": "Stealth Contrast (rainglow)",
"keyboard.dispatch": "keyCode",
"editor.tokenColorCustomizations": {
"[Carbonight Light (rainglow)]": {
"textMateRules": [
{
"scope": "storage.type",
"settings": {
"foreground": "#555"
}
},
{
"scope": "constant.numeric",
"settings": {
"foreground": "#555"
}
},
{
"scope": "constant.language",
"settings": {
"foreground": "#555"
}
},
{
"scope": "comment",
"settings": {
"foreground": "#999"
}
}
]
},
"[Stealth Contrast (rainglow)]": {
"textMateRules": [
{
"scope": "storage.type",
"settings": {
"foreground": "#545a60"
}
},
{
"scope": "support.function",
"settings": {
"foreground": "#545a60"
}
},
{
"scope": "comment",
"settings": {
"foreground": "#3c3f42"
}
}
]
}
},
"workbench.colorCustomizations": {
"[Carbonight Light (rainglow)]": {
"terminal.ansiBlack": "#333",
"terminal.ansiBlue": "#338",
"terminal.ansiBrightBlack": "#333",
"terminal.ansiBrightBlue": "#338",
"terminal.ansiBrightCyan": "#377",
"terminal.ansiBrightGreen": "#383",
"terminal.ansiBrightMagenta": "#737",
"terminal.ansiBrightRed": "#833",
"terminal.ansiBrightWhite": "#888",
"terminal.ansiBrightYellow": "#773",
"terminal.ansiCyan": "#377",
"terminal.ansiGreen": "#383",
"terminal.ansiMagenta": "#737",
"terminal.ansiRed": "#833",
"terminal.ansiWhite": "#888",
"terminal.ansiYellow": "#773",
"gitDecoration.modifiedResourceForeground": "#c63",
"gitDecoration.untrackedResourceForeground": "#282",
"gitDecoration.ignoredResourceForeground": "#666"
},
"[Stealth Contrast (rainglow)]": {
"editor.foreground": "#6b7780",
"editor.selectionBackground": "#99999930",
}
},
"go.toolsManagement.autoUpdate": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment