Skip to content

Instantly share code, notes, and snippets.

@Aisuko
Created October 23, 2023 02:48
Show Gist options
  • Save Aisuko/de42964f597fed18d363ec18f906fd74 to your computer and use it in GitHub Desktop.
Save Aisuko/de42964f597fed18d363ec18f906fd74 to your computer and use it in GitHub Desktop.
.vscode settings.json configuration
{
"editor.inlayHints.enabled": "on",
"editor.inlayHints.fontFamily": "Courier New",
"editor.inlayHints.fontSize": 11,
"editor.semanticHighlighting.enabled": "configuredByTheme",
"editor.semanticTokenColorCustomizations": {
"enabled": true,
"rules": {
"*.mutable":{
"fontStyle": "",
},
"genericType": {
"foreground": "#ff0000",
"fontStyle": "bold"
},
"parameter":{
"foreground": "#ff0000",
"fontStyle": "bold"
},
"type": {
"foreground": "#ff0000",
"fontStyle": "bold"
},
"operator.unsafe": "#ff6600",
"function.unsafe": "#ff6600",
"method.unsafe": "#ff6600"
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment