Skip to content

Instantly share code, notes, and snippets.

@mt40
Created September 1, 2016 11:59
Show Gist options
  • Save mt40/3515a3161985effee189a87d8da09155 to your computer and use it in GitHub Desktop.
Save mt40/3515a3161985effee189a87d8da09155 to your computer and use it in GitHub Desktop.
My Vscode User Settings
{
// 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