Created
June 30, 2019 19:34
-
-
Save jubishop/5e0d23b32fbc132e121cde6b4608fb07 to your computer and use it in GitHub Desktop.
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
{ | |
"editor.fontFamily": "Consolas", | |
"editor.tabSize": 2, | |
"editor.fontSize": 16, | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.copyWithSyntaxHighlighting": false, | |
"editor.find.autoFindInSelection": true, | |
"editor.quickSuggestions": false, | |
"files.trimTrailingWhitespace": true, | |
"files.trimFinalNewlines": true, | |
"files.insertFinalNewline": true, | |
"workbench.enableExperiments": false, | |
"window.newWindowDimensions": "inherit", | |
"search.showLineNumbers": true, | |
"terminal.integrated.fontSize": 16, | |
"files.autoSave": "onFocusChange", | |
"editor.wrappingIndent": "deepIndent", | |
"editor.minimap.enabled": true, | |
"workbench.startupEditor": "none", | |
"explorer.confirmDragAndDrop": false, | |
"workbench.editor.enablePreview": false, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"launch": { | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Debug Local File", | |
"type": "Ruby", | |
"request": "launch", | |
"cwd": "${workspaceRoot}", | |
"program": "${file}" | |
} | |
] | |
}, | |
"editor.wordWrapColumn": 120, | |
"[markdown]":{ | |
"editor.wordWrap": "wordWrapColumn", | |
"editor.wordWrapColumn": 80, | |
}, | |
"workbench.statusBar.visible": true, | |
"workbench.activityBar.visible": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment