Last active
September 12, 2022 15:49
-
-
Save Josyto/06f4d9d6c69b32f35a2344dfbebb87b4 to your computer and use it in GitHub Desktop.
Inlay hints settings of Desarrollo Útil
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
| { | |
| // 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