Skip to content

Instantly share code, notes, and snippets.

@andrewmaudsley
Created February 13, 2020 14:34
Show Gist options
  • Save andrewmaudsley/7e4680cfb93188aa24e08893c2c94d59 to your computer and use it in GitHub Desktop.
Save andrewmaudsley/7e4680cfb93188aa24e08893c2c94d59 to your computer and use it in GitHub Desktop.
Temp Code Settings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+w",
"command": "-workbench.action.switchWindow"
},
{
"key": "ctrl+j",
"command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "ctrl+k",
"command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
}
]
{
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"workbench.colorTheme": "Solarized Dark",
"editor.tabSize": 2,
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "block",
"workbench.colorCustomizations": {
"statusBar.background": "#005f5f",
"statusBar.noFolderBackground": "#005f5f",
"statusBar.debuggingBackground": "#005f5f",
"editorCursor.foreground": "#839496",
"terminalCursor.foreground": "#839496"
},
"editor.fontFamily": "SF Mono",
"editor.fontSize": 14,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.minimap.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment