User Tools

Site Tools


vscode

This is an old revision of the document!


Visual Studio Code

These are notes to myself:

Log in with your GitHub account, and turn on settings sync. That will also sync your extensions. But for reference, here's my settings file from a Windows machine:

%APPDATA%\Code\User\settings.json
{
    "python.defaultInterpreterPath": "C:\\Users\\david\\AppData\\Local\\Programs\\Python\\Python38-32\\python.exe",
//    "workbench.colorTheme": "Default Light+",
    "workbench.colorCustomizations": { 
      "[Default Light+]": {
         "activityBar.background": "#afafaf",
         "activityBar.foreground": "#202020",
         "activityBar.activeBackground": "#dadada",
         "activityBar.activeBorder": "#5f5f5f",
         "statusBar.background": "#5a7ab4",
         "statusBar.noFolderBackground": "#a98db9",
         // "extensionBadge.remoteBackground": "#ff0000",
         "editorGutter.background": "#eaecee"
      }
 
//    "workbench.colorTheme":    "Default Light+",
    "workbench.colorCustomizations": {
        "[Default Light+]": {
            "activityBar.background": "#afafaf",
            "activityBar.foreground": "#202020",
            "activityBar.activeBackground": "#dadada",
            "activityBar.activeBorder": "#5f5f5f",
            "statusBar.background": "#5a7ab4",
            "statusBar.noFolderBackground": "#a98db9",
            "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.fontSize": 13,
    "window.zoomLevel": 0,
    "debug.console.fontSize": 13,
    "markdown.preview.fontSize": 13,
    "terminal.integrated.fontSize": 13,
    "editor.occurrencesHighlight": false,
    "editor.minimap.enabled": false,
    "workbench.settings.useSplitJSON": true,  // used to be default
    "editor.renderIndentGuides": false,
    "workbench.startupEditor": "newUntitledFile",
    "remote.SSH.remotePlatform": {
      "dblume-edge.local": "linux",
      "dblume-edge": "linux"
    },
    "remote.SSH.configFile": "C:\\Users\\david\\.ssh\\config",
    "security.workspace.trust.untrustedFiles": "open",
    "workbench.editorAssociations": {
      "*.ipynb": "jupyter-notebook"
    },
    "python.pythonPath": "C:\\Users\\david\\AppData\\Local\\Programs\\Python\\Python38-32\\python.exe",
    "python.showStartPage": false,
    "notebook.cellToolbarLocation": {
      "default": "right",
      "jupyter-notebook": "left"
    },
    "workbench.editor.untitled.hint": "hidden",
    "editor.guides.indentation": false,
    "workbench.editor.wrapTabs": true,
    "files.eol": "\n"
}
vscode.1747526132.txt.gz · Last modified: 2025/05/17 16:55 by dblume