User Tools

Site Tools


vscode

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
vscode [2022/01/06 15:06] – created dblumevscode [2025/05/17 16:57] (current) dblume
Line 3: Line 3:
 These are notes to myself: These are notes to myself:
  
-Log in with your GitHub account, and turn on settings sync. Here's my [[https://code.visualstudio.com/docs/getstarted/settings#_settings-file-locations|settings file]]:+Log in with your **GitHub account**, and turn on settings sync. That will also sync your extensions. But for reference, here's my [[https://code.visualstudio.com/docs/getstarted/settings#_settings-file-locations|settings file]] from a Windows machine:
  
 <file javascript %APPDATA%\Code\User\settings.json> <file javascript %APPDATA%\Code\User\settings.json>
 { {
     "python.defaultInterpreterPath": "C:\\Users\\david\\AppData\\Local\\Programs\\Python\\Python38-32\\python.exe",     "python.defaultInterpreterPath": "C:\\Users\\david\\AppData\\Local\\Programs\\Python\\Python38-32\\python.exe",
-    "workbench.colorTheme": "Default Light+", + 
-    "workbench.colorCustomizations": {  +//    "workbench.colorTheme":    "Default Light+", 
-      "[Default Light+]":+    "workbench.colorCustomizations":
-         "activityBar.background": "#afafaf", +        "[Default Light+]":
-         "activityBar.foreground": "#202020", +            "activityBar.background": "#afafaf", 
-         "activityBar.activeBackground": "#dadada", +            "activityBar.foreground": "#202020", 
-         "activityBar.activeBorder": "#5f5f5f", +            "activityBar.activeBackground": "#dadada", 
-         "statusBar.background": "#5a7ab4", +            "activityBar.activeBorder": "#5f5f5f", 
-         "statusBar.noFolderBackground": "#a98db9", +            "statusBar.background": "#5a7ab4", 
-         // "extensionBadge.remoteBackground": "#ff0000", +            "statusBar.noFolderBackground": "#a98db9", 
-         "editorGutter.background": "#eaecee+            "editorGutter.background": "#eaecee" 
-      }+        }, 
 + 
 +        // https://raw.githubusercontent.com/mbadolato/iTerm2-Color-Schemes/refs/heads/master/vscode/catppuccin-mocha.json 
 +        "terminal.foreground": "#cdd6f4", 
 +        "terminal.background": "#1e1e2e", 
 +        "terminal.ansiBlack": "#45475a", 
 +        "terminal.ansiBlue": "#89b4fa", 
 +        "terminal.ansiCyan": "#48d6d8",  // 94e2d5 
 +        "terminal.ansiGreen": "#57df5a", // a6e3a1 
 +        "terminal.ansiMagenta": "#f5c2e7", 
 +        "terminal.ansiRed": "#f38ba8", 
 +        "terminal.ansiWhite": "#d0d5e5",  // a6adc8 
 +        "terminal.ansiYellow": "#f9e2af", 
 +        "terminal.ansiBrightBlack": "#585b70", 
 +        "terminal.ansiBrightBlue": "#74a8fc", 
 +        "terminal.ansiBrightCyan": "#6bd7ca", 
 +        "terminal.ansiBrightGreen": "#89d88b", 
 +        "terminal.ansiBrightMagenta": "#f2aede", 
 +        "terminal.ansiBrightRed": "#f37799", 
 +        "terminal.ansiBrightWhite": "#dee2f8",  // bac2de 
 +        "terminal.ansiBrightYellow": "#ebd391", 
 +        "terminal.selectionBackground": "#585b70", 
 +        "terminalCursor.background": "#1e1e2a",  // 1e1e2e 
 +        "terminalCursor.foreground": "#d0d5e5",  // f5e0dc 
 + 
 +        "activityBar.background": "#2c2c2c", 
 +        "activityBar.foreground": "#d6d4eb", 
 +        "activityBar.activeBackground": "#4a4b4e", 
 +        "activityBar.activeBorder": "#b3b0ce", 
 +        "statusBar.background": "#394b6b", 
 +        "statusBar.noFolderBackground": "#2e2f46", 
 +        "editorGutter.background": "#262b30"
     },     },
     "editor.fontFamily": "'DejaVu Sans Mono for Powerline', Consolas, 'Courier New', monospace",     "editor.fontFamily": "'DejaVu Sans Mono for Powerline', Consolas, 'Courier New', monospace",
Line 47: Line 78:
       "jupyter-notebook": "left"       "jupyter-notebook": "left"
     },     },
-    "workbench.editor.untitled.hint": "hidden"+    "workbench.editor.untitled.hint": "hidden", 
 +    "editor.guides.indentation": false, 
 +    "workbench.editor.wrapTabs": true, 
 +    "files.eol": "\n"
 } }
 </file> </file>
vscode.1641510407.txt.gz · Last modified: 2023/04/12 20:44 (external edit)