Skip to content

Instantly share code, notes, and snippets.

@rtorr
Created April 10, 2020 16:27
Show Gist options
  • Save rtorr/60f09c49c6339a515e1f5ee2a548f710 to your computer and use it in GitHub Desktop.
Save rtorr/60f09c49c6339a515e1f5ee2a548f710 to your computer and use it in GitHub Desktop.
vscode configuration
[
{
"key": "cmd+\\ cmd+\\",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "cmd+2",
"command": "workbench.action.focusSideBar"
},
{
"key": "ctrl+w ctrl+w",
"command": "workbench.action.navigateEditorGroups"
},
{
"key": "ctrl+l",
"command": "workbench.action.splitEditor"
},
{
"key": "cmd+w",
"command": "workbench.action.closeEditorsInGroup"
},
{
"key": "shift+enter",
"command": "editor.action.insertLineAfter",
"when": "editorTextFocus"
},
{
"key": "ctrl+d ctrl+d",
"command": "editor.action.deleteLines",
"when": "editorTextFocus"
},
{
"key": "ctrl+right",
"command": "cursorWordRight",
"when": "editorTextFocus"
},
{
"key": "ctrl+tab",
"command": "workbench.action.openPreviousEditorFromHistory"
},
{
"key": "ctrl+tab",
"command": "workbench.action.quickOpenNavigateNext",
"when": "inQuickOpen"
},
{
"key": "ctrl+e",
"command": "cursorEnd"
},
{
"key": "ctrl+a",
"command": "cursorHome"
},
{
"key": "cmd+right",
"command": "cursorEnd"
},
{
"key": "cmd+left",
"command": "cursorHome"
},
{
"key": "cmd+e",
"command": "workbench.action.openPreviousEditorFromHistory"
},
{
"key": "cmd+e",
"command": "workbench.action.quickOpenNavigateNext",
"when": "inQuickOpen"
},
{
"key": "cmd+down",
"command": "workbench.action.quickOpenNavigateNext",
"when": "inQuickOpen"
},
{
"key": "cmd+up",
"command": "workbench.action.quickOpenNavigatePrevious",
"when": "inQuickOpen"
},
{
"key": "cmd+s",
"command": "workbench.action.files.save"
},
{
"key": "cmd+a",
"command": "editor.action.selectAll"
},
{
"key": "cmd+v",
"command": "editor.action.clipboardPasteAction"
},
{
"key": "cmd+c",
"command": "editor.action.clipboardCopyAction"
},
{
"key": "cmd+x",
"command": "editor.action.clipboardCutAction"
},
{
"key": "cmd+r",
"command": "workbench.action.tasks.runTask"
},
{
"key": "cmd+b",
"command": "workbench.action.tasks.build"
},
{
"key": "cmd+t",
"command": "workbench.action.tasks.test"
}
]
{
"editor.semanticHighlighting.enabled": true,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.smoothScrolling": true,
"workbench.fontAliasing": "default",
"editor.fontSize": 11,
"editor.lineHeight": 18,
"editor.scrollBeyondLastLine": false,
"javascript.validate.enable": true,
"files.autoSave": "onFocusChange",
"explorer.openEditors.visible": 0,
"workbench.editor.showTabs": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.largeFileOptimizations": false,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.activityBar.visible": true,
"workbench.statusBar.visible": true,
"window.zoomLevel": 1,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.minimap.renderCharacters": false,
"editor.minimap.enabled": false,
"breadcrumbs.enabled": false,
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\wsl.exe",
"git.autofetch": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment