Skip to content

Instantly share code, notes, and snippets.

@carmanchris31
Last active August 30, 2019 20:34
Embed
What would you like to do?
Recommended VSCode Settings
{
"editor.renderControlCharacters": true,
"editor.renderLineHighlight": "all",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/*.bundle.js": true,
},
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": true,
"**/vendor/**": true,
},
"search.exclude": {
"**/bower_components": true,
"**/coverage": true,
"*.scssc": true,
"*.min.js": true,
"*.min.css": true,
},
"window.titleBarStyle": "native",
"debug.enableAllHovers": true,
"debug.inlineValues": true,
"workbench.editor.tabCloseButton": "off",
"editor.tabSize": 2,
"workbench.editor.revealIfOpen": true,
"workbench.startupEditor": "none",
"extensions.ignoreRecommendations": true,
"editor.multiCursorModifier": "ctrlCmd",
"workbench.editor.labelFormat": "short",
"terminal.integrated.rendererType": "dom",
"breadcrumbs.enabled": true,
"editor.minimap.renderCharacters": false,
"html.autoClosingTags": false,
"search.location": "sidebar",
"editor.autoIndent": false,
"editor.tabCompletion": "on",
"editor.suggest.localityBonus": true,
"diffEditor.renderSideBySide": true,
"search.showLineNumbers": true,
"window.newWindowDimensions": "inherit",
"window.restoreWindows": "all",
"window.clickThroughInactive": false,
"files.associations": {
".babelrc": "json",
},
"typelens.decorateunused": false,
"window.zoomLevel": 0,
"editor.gotoLocation.multiple": "goto",
"javascript.suggest.completeJSDocs": false,
"typescript.suggest.completeJSDocs": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment