Skip to content

Instantly share code, notes, and snippets.

@Josyto
Last active September 12, 2022 15:49
Show Gist options
  • Select an option

  • Save Josyto/06f4d9d6c69b32f35a2344dfbebb87b4 to your computer and use it in GitHub Desktop.

Select an option

Save Josyto/06f4d9d6c69b32f35a2344dfbebb87b4 to your computer and use it in GitHub Desktop.
Inlay hints settings of Desarrollo Útil
{
// Rest of configuration
// INLINE HINTS
"javascript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": false,
"typescript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": false,
"editor.inlayHints.fontSize": 12,
// Theme Colors Override
"workbench.colorCustomizations": {
// Overrides Theme Default Colors for InlayHints feature
"editorInlayHint.background": "#00001c00",
"editorInlayHint.foreground": "#99FFBBCC",
// Overrides Theme Parameter hints fg for InlayHints feature
"editorInlayHint.parameterBackground": "#a5a5a512",
"editorInlayHint.parameterForeground": "#b0b0b0cc",
// Overrides Theme Type hints fg for InlayHints feature
"editorInlayHint.typeBackground": "#a5a5a512",
"editorInlayHint.typeForeground": "#DDEEFF88"
},
"javascript.inlayHints.functionLikeReturnTypes.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment