Created
August 16, 2018 08:02
-
-
Save matthewerskine/3b0deb9dcd52287c4c22a12592215f0c to your computer and use it in GitHub Desktop.
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
| { | |
| "workbench.editor.enablePreview": false, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.colorTheme": "Allure (rainglow)", | |
| "window.zoomLevel": 0, | |
| "explorer.autoReveal": false, | |
| "git.autofetch": true, | |
| "search.useIgnoreFiles": false, | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 13, | |
| "editor.fontFamily": "FiraCode-Retina", | |
| "editor.letterSpacing": 0.1, | |
| "editor.lineHeight": 22.5, | |
| "terminal.integrated.shell.osx": "zsh", | |
| // Sublime imports: | |
| "editor.acceptSuggestionOnEnter": "on", | |
| "editor.quickSuggestionsDelay": 50, | |
| "editor.find.autoFindInSelection": false, | |
| "editor.autoIndent": true, | |
| "window.closeWhenEmpty": false, | |
| "editor.emptySelectionClipboard": true, | |
| "files.encoding": "utf8", | |
| "editor.detectIndentation": true, | |
| "editor.dragAndDrop": true, | |
| "editor.renderIndentGuides": true, | |
| "editor.renderWhitespace": "boundary", | |
| "files.insertFinalNewline": true, | |
| "editor.showFoldingControls": "mouseover", | |
| "editor.find.seedSearchStringFromSelection": true, | |
| "files.hotExit": "onExit", | |
| "editor.wrappingIndent": "same", | |
| "editor.lineNumbers": "on", | |
| "editor.matchBrackets": true, | |
| "editor.selectionHighlight": true, | |
| "window.openFilesInNewWindow": "on", | |
| "window.restoreFullscreen": false, | |
| "files.autoSave": "off", | |
| "editor.scrollBeyondLastLine": true, | |
| "editor.mouseWheelScrollSensitivity": 1, | |
| "window.title": "${activeEditorFull}${separator}${rootName}", | |
| "workbench.editor.tabCloseButton": "right", | |
| "editor.tabCompletion": true, | |
| "editor.tabSize": 4, | |
| "editor.trimAutoWhitespace": true, | |
| "files.trimTrailingWhitespace": false, | |
| "editor.useTabStops": true, | |
| "editor.wordSeparators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?", | |
| "editor.wordWrap": "on", | |
| "editor.formatOnPaste": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.snippetSuggestions": "top" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment