Created
April 12, 2024 18:07
-
-
Save v1k22/293dce9d8487ea09cc2f6b0dcdcc3c6e to your computer and use it in GitHub Desktop.
visual studio code pytorch theme settings
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
| { | |
| "workbench.colorTheme": "Default Light+", | |
| "workbench.colorCustomizations": { | |
| "editor.background": "#f1f1f1", | |
| }, | |
| "editor.tokenColorCustomizations": { | |
| "variables": "#000000", | |
| "keywords": "#0086a4", | |
| "comments": "#c1c1c1", | |
| "functions": "#980000", | |
| "numbers": "#0086a4", | |
| }, | |
| "editor.semanticTokenColorCustomizations": { | |
| "[Default Light+]": { | |
| "enabled": true, | |
| "rules": { | |
| "*.declaration": { "bold": true }, | |
| } | |
| } | |
| }, | |
| "editor.fontFamily": "IBM Plex Mono", | |
| "editor.fontSize": 13, | |
| "editor.cursorStyle": "block" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment