Skip to content

Instantly share code, notes, and snippets.

@randomnerd
Created November 27, 2017 11:54
Show Gist options
  • Save randomnerd/27f0d18c8505d8b75a8fe97739ac0b73 to your computer and use it in GitHub Desktop.
Save randomnerd/27f0d18c8505d8b75a8fe97739ac0b73 to your computer and use it in GitHub Desktop.
vscode config
// Place your settings in this file to overwrite the default settings
{
"editor.renderWhitespace": "boundary",
"workbench.colorTheme": "One Dark Pro",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true
},
"editor.formatOnPaste": true,
"editor.renderIndentGuides": true,
"editor.rulers": [
120
],
"editor.minimap.enabled": false,
"window.restoreWindows": "all",
"editor.multiCursorModifier": "ctrlCmd",
"workbench.startupEditor": "welcomePage",
"vsicons.presets.jsOfficial": true,
"vsicons.presets.tsOfficial": true,
"extensions.ignoreRecommendations": false,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"workbench.editor.tabCloseButton": "right",
"workbench.commandPalette.preserveInput": true,
"search.useIgnoreFilesByDefault": true,
"search.useIgnoreFiles": true,
"eslint.options": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment