Last active
March 7, 2018 19:55
-
-
Save pipwilson/f29be554f7ac1b5939cef069445342c4 to your computer and use it in GitHub Desktop.
VS Code user 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
{ | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.colorTheme": "Solarized Dark", | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/.settings": true, | |
"**/.idea" :true, | |
"**/.vscode": true, | |
"**/.classpath": true, | |
"**/.project": true | |
}, | |
"window.openFilesInNewWindow": "off", | |
"files.autoSave": "off", | |
"workbench.editor.enablePreview": false, | |
"editor.renderWhitespace": "all", | |
"vsicons.dontShowNewVersionMessage": true, | |
"terminal.integrated.shell.windows": "C:\\tools\\cmder\\vendor\\git-for-windows\\bin\\bash.exe", | |
"git.path": "C:\\tools\\cmder\\vendor\\git-for-windows\\bin\\git.exe", | |
"java.errors.incompleteClasspath.severity": "ignore", | |
"workbench.startupEditor": "newUntitledFile", | |
"files.associations": { | |
"Vagrantfile": "ruby" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment