Skip to content

Instantly share code, notes, and snippets.

@bondarolik
Created February 27, 2021 14:08
Show Gist options
  • Save bondarolik/a67148a48119d3c453ceb2a95fcde06d to your computer and use it in GitHub Desktop.
Save bondarolik/a67148a48119d3c453ceb2a95fcde06d to your computer and use it in GitHub Desktop.
Settings for VSCode
{
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": 0,
"editor.fontSize": 14,
"files.autoSave": "afterDelay",
"editor.tabSize": 2,
"editor.rulers": [120],
"editor.wordWrapColumn": 120,
"editor.wordWrap": "on",
"workbench.tree.indent": 13,
"workbench.colorTheme": "Xcode Default (Dark)",
"terminal.integrated.fontSize": 14,
"editor.definitionLinkOpensInPeek": true,
"editor.semanticTokenColorCustomizations": null,
"editor.tabCompletion": "on",
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.autoIndent": false
},
"explorer.confirmDelete": false,
"workbench.activityBar.visible": true,
"editor.codeActionsOnSave": null,
"editor.renderIndentGuides": false,
"editor.minimap.enabled": false,
"todo-tree.tree.showScanModeButton": false,
"explorer.confirmDragAndDrop": false,
"workbench.iconTheme": "vs-minimal",
"editor.fontFamily": "Menlo, Source Code Pro, Monaco, 'Courier New', monospace",
"workbench.colorCustomizations": {
"[Tomorrow]": {
"editor.background": "#EBFDED"
}
},
"workbench.statusBar.visible": true,
"ruby.rubocop.executePath": "/Users/vyacheslavbondaruk/.rvm/gems/ruby-2.7.0/wrappers/",
"ruby.rubocop.configFilePath": ".rubocop.yml",
"ruby.rubocop.useBundler": true,
"emmet.triggerExpansionOnTab": true,
"workbench.sideBar.location": "right",
// "ruby.lint": {
// "rubocop": {
// "useBundler": true // enable rubocop via bundler
// }
// },
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment