Created
July 13, 2017 08:57
-
-
Save gianrubio/a2fcb3969f4edb3172cc7a1a85392238 to your computer and use it in GitHub Desktop.
vscode settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Place your settings in this file to overwrite the default settings | |
| { | |
| "workbench.colorTheme": "Solarized Light", | |
| "git.confirmSync": false, | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| ".history/*.*": true | |
| }, | |
| "files.autoSave": "afterDelay", | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "*.history/**": true | |
| }, | |
| "search.useIgnoreFilesByDefault": true, | |
| "projectManager.git.ignoredFolders": [ | |
| "node_modules", | |
| "out", | |
| "typings", | |
| "test", | |
| ".history" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment