vscode local setting - jinwooklim/my-exp GitHub Wiki

.vscode/settings.json

{
    "workbench.colorCustomizations": {
        "activityBar.background": "#121F7F",
        "titleBar.activeBackground": "#1A2BB2",
        "titleBar.activeForeground": "#F9F9FE"
    },
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true,
        "**/Thumbs.db": true,
        "**/_debug": false,
        "_debug": false,
        "**/symbollic": false,
        "symbollic": false,
        "**/__pycache__": true,
        "__pycache__": true,
        "**/_configs": false,
        "_configs": false
    },
    "explorerExclude.backup": null
}

.vscode/sftp.json

{
    "name": "Workstation",
    "host": "192.168.0.9",
    "protocol": "sftp",
    "port": 8023,
    "username": "user",
    "password": "PASSWORD",
    "remotePath": "/home/user/workspaces/aiden/projects/video-anomaly-detection",
    "ignore": [
        ".vscode",
        ".git",
        ".DS_Store",
        ".idea",
        "_debug",
        "_pretrained_backbones",
        "_tmp",
        "release",
        "symbollic"
    ],
    "uploadOnSave": true
}