Skip to content

Instantly share code, notes, and snippets.

@herko
Last active August 12, 2020 12:27
Show Gist options
  • Save herko/c1e5f401c023c97f7fd788dfa49afbdb to your computer and use it in GitHub Desktop.
Save herko/c1e5f401c023c97f7fd788dfa49afbdb to your computer and use it in GitHub Desktop.
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "shift+cmd+.",
"command": "-breadcrumbs.focusAndSelect",
"when": "breadcrumbsPossible"
},
{
"key": "shift+cmd+.",
"command": "-breadcrumbs.toggleToOn",
"when": "!config.breadcrumbs.enabled"
},
{
"key": "shift+cmd+.",
"command": "-editor.action.inPlaceReplace.down",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+cmd+.",
"command": "erb.toggleTags",
"when": "editorTextFocus && editorLangId == 'erb'"
},
{
"key": "ctrl+shift+`",
"command": "-erb.toggleTags",
"when": "editorTextFocus && editorLangId == 'erb'"
},
{
"key": "shift+cmd+[BracketRight]",
"command": "workbench.action.nextEditor"
},
{
"key": "alt+cmd+right",
"command": "-workbench.action.nextEditor"
},
{
"key": "shift+cmd+[BracketLeft]",
"command": "workbench.action.previousEditor"
},
{
"key": "alt+cmd+left",
"command": "-workbench.action.previousEditor"
}
]
{
"telemetry.enableTelemetry": false,
"window.titleBarStyle": "native",
"editor.fontFamily": "'Operator Mono Light', Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.minimap.enabled": false,
"editor.tabSize": 2,
"files.exclude": {
"*.log": true,
"**/node_modules": true,
"**/tmp": true,
"src/react-app-env.d.ts": true
},
"workbench.activityBar.visible": true,
"workbench.tree.indent": 20,
"workbench.settings.editor": "json",
"vim.leader": ",",
"emmet.includeLanguages": {
"erb": "html"
},
"editor.lineNumbers": "relative",
"emmet.triggerExpansionOnTab": true,
"editor.quickSuggestionsDelay": 500,
"explorer.openEditors.visible": 0,
"git.autofetch": true,
"editor.renderWhitespace": "none",
"files.associations": {
"*.erb": "erb",
"*.obj": "json",
"*.js": "javascript"
},
"window.zoomLevel": 0,
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "never",
"editor.formatOnSave": false,
"terminal.integrated.shell.osx": "/bin/bash",
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.autoReveal": false,
"editor.hideCursorInOverviewRuler": true,
"editor.lineHeight": 26,
"editor.matchBrackets": "always",
"editor.occurrencesHighlight": false,
"editor.overviewRulerBorder": false,
"editor.renderIndentGuides": true,
"editor.renderLineHighlight": "none",
"workbench.editor.showIcons": false,
"workbench.statusBar.visible": true,
"workbench.colorTheme": "One Dark Pro",
"ruby.useLanguageServer": true,
"ruby.lint": {
"standard": {
"useBundler": true
},
"rails_best_practices": {
"useBundler": true
}
},
"breadcrumbs.enabled": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.smoothScrolling": true,
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment