2017-12-27 VSCode personl settings

```

Code -> 首选项 -> 设置 -> 用户设置

{

    "files.exclude": {

        "**/.git": true,

        "**/.DS_Store": true,

        "Temp":true,

        "obj":true,

        "Library":true,

        "ProjectSettings":true,

        "**/**/**.meta":true,

        "**/userprefs":true,

        "**/Textures":true ,

        "**/Font":true,

        "**/Resources":true ,

        "**/Scenes":true ,

        "**/Others":true ,

        "**/Materials":true ,

        "**/Icon":true ,

        "**.csproj":true ,

        "**.userprefs":true ,

        ".vscode":true

},

```

```

// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the file.exclude setting.

"search.exclude": {

        "**/node_modules": true,

        "**/bower_components": true,

        "Temp":true,

        "obj":true,

        "Library":true,

        "ProjectSettings":true,

        "//**.meta":true,

        "**/userprefs":true,

        "**/Textures":true ,

        "**/Font":true,

        "**/Resources":true ,

        "**/Scenes":true ,

        "**/Others":true ,

        "**/Materials":true,

        "**/Icon":true ,

        "**.csproj":true,

        "**.userprefs":true,

},

"workbench.colorTheme": "Monokai",

"explorer.confirmDragAndDrop": false

}

```

你可能感兴趣的:(2017-12-27 VSCode personl settings)