Created
September 1, 2016 11:59
-
-
Save prestonph/3515a3161985effee189a87d8da09155 to your computer and use it in GitHub Desktop.
My Vscode 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
{ | |
// Configure glob patterns for excluding files and folders. | |
"files.exclude": { | |
"**/.git": true, | |
"**/.DS_Store": true, | |
"**/*.cs.meta": true, | |
"**/node_modules": true | |
}, | |
"workbench.editor.showTabs": false, | |
"editor.renderIndentGuides": true, | |
"editor.renderWhitespace": false, | |
"editor.insertSpaces": true, | |
"window.restoreFullscreen": false, | |
"editor.wrappingColumn": 0, | |
"editor.fontFamily": "mononoki", | |
"files.autoSave": "afterDelay", | |
"editor.fontSize": 14, | |
"editor.tabSize": 2, | |
"TodoParser": { | |
"folderExclude": ["node_modules", ".git", ".vscode"], | |
"exclude": ["java"], | |
"devMode": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment