Skip to content

Instantly share code, notes, and snippets.

@v1k22
Created April 12, 2024 18:07
Show Gist options
  • Select an option

  • Save v1k22/293dce9d8487ea09cc2f6b0dcdcc3c6e to your computer and use it in GitHub Desktop.

Select an option

Save v1k22/293dce9d8487ea09cc2f6b0dcdcc3c6e to your computer and use it in GitHub Desktop.
visual studio code pytorch theme settings
{
"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