Created
May 27, 2020 15:59
-
-
Save nateritter/eba1d35dd7aa1c24fa269b2a89a74173 to your computer and use it in GitHub Desktop.
VSCode settings.json
This file contains 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
{ | |
/** | |
* Silence the noise | |
**/ | |
"workbench.activityBar.visible": false, | |
"editor.acceptSuggestionOnEnter": "off", | |
"editor.autoIndent": true, | |
"editor.dragAndDrop": true, | |
"files.insertFinalNewline": true, | |
"editor.fontSize": 12, | |
"editor.lineHeight": 22, | |
"window.title": "${activeEditorFull}${separator}${rootName}", | |
"editor.tabSize": 4, | |
"files.trimTrailingWhitespace": true, | |
"editor.wordWrap": "off", | |
"editor.formatOnPaste": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"workbench.editor.showTabs": false, | |
"workbench.sideBar.location": "right", | |
"workbench.statusBar.visible": false, | |
"editor.minimap.enabled": false, | |
"workbench.colorTheme": "Boxy Nova", | |
"sync.gist": "68f5f2a50d3f001639f5767d76299fbd", | |
"sync.autoUpload": true, | |
"sync.autoDownload": true, | |
"sync.removeExtensions": false, | |
"window.zoomLevel": 1, | |
"breadcrumbs.enabled": false, | |
"editor.renderWhitespace": "none", | |
"editor.matchBrackets": false, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"workbench.startupEditor": "newUntitledFile", | |
"markdown.extension.toc.updateOnSave": false, | |
"workbench.iconTheme": null | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment