Created
July 12, 2018 10:44
-
-
Save jaywick/2e8cf1bdf3d667fe859f50aa0f6d95ed to your computer and use it in GitHub Desktop.
My current vscode settings and keybindings
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
| [ | |
| { | |
| "key": "ctrl+t", | |
| "command": "workbench.action.files.newUntitledFile" | |
| }, | |
| { | |
| "key": "ctrl+b", | |
| "command": "editor.action.goToImplementation" | |
| }, | |
| { | |
| "key": "f11", | |
| "command": "workbench.action.toggleZenMode" | |
| }, | |
| { | |
| "key": "ctrl+w", | |
| "command": "workbench.action.terminal.kill", | |
| "when": "terminalFocus" | |
| }, | |
| { | |
| "key": "f1", | |
| "command": "editor.action.previewDeclaration" | |
| }, | |
| { | |
| "key": "ctrl+shift+n", | |
| "command": "explorer.newFolder" | |
| }, | |
| { | |
| "key": "ctrl+n", | |
| "command": "explorer.newFile" | |
| }, | |
| { | |
| "key": "ctrl+shift+tab", | |
| "command": "workbench.action.previousEditor" | |
| }, | |
| { | |
| "key": "ctrl+tab", | |
| "command": "workbench.action.nextEditor" | |
| }, | |
| { | |
| "key": "ctrl+p", | |
| "command": "workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "alt+`", | |
| "command": "workbench.action.tasks.runTask" | |
| }, | |
| { | |
| "key": "ctrl+alt+f", | |
| "command": "editor.action.format" | |
| }, | |
| { | |
| "key": "ctrl+r", | |
| "command": "editor.action.showReferences" | |
| }, | |
| { | |
| "key": "ctrl+shift+s", | |
| "command": "workbench.action.files.saveAll" | |
| }, | |
| { | |
| "key": "ctrl+e", | |
| "command": "workbench.action.files.revealActiveFileInWindows" | |
| }, | |
| { | |
| "key": "ctrl+p", | |
| "command": "editor.action.triggerParameterHints" | |
| }, | |
| { | |
| "key": "ctrl+r", | |
| "command": "editor.action.referenceSearch.trigger" | |
| }, | |
| { | |
| "key": "ctrl+[", | |
| "command": "editor.fold", | |
| "when": "editorFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+[", | |
| "command": "editor.foldAll", | |
| "when": "editorFocus" | |
| }, | |
| { | |
| "key": "ctrl+]", | |
| "command": "editor.unfold", | |
| "when": "editorFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+]", | |
| "command": "editor.unfoldAll", | |
| "when": "editorFocus" | |
| }, | |
| { | |
| "key": "ctrl+0", | |
| "command": "workbench.action.zoomReset", | |
| "when": "editorFocus" | |
| }, | |
| { | |
| "key": "ctrl+alt+shift+k", | |
| "command": "workbench.action.openGlobalKeybindings" | |
| }, | |
| { | |
| "key": "ctrl+shift+o", | |
| "command": "workbench.action.files.openFolder" | |
| }, | |
| { | |
| "key": "ctrl+shift+w", | |
| "command": "workbench.action.closeOtherEditors" | |
| }, | |
| { | |
| "key": "ctrl+q", | |
| "command": "workbench.action.closeAllEditors" | |
| }, | |
| { | |
| "key": "alt+`", | |
| "command": "workbench.files.action.focusFilesExplorer" | |
| }, | |
| { | |
| "key": "alt+end", | |
| "command": "workbench.action.tasks.terminate" | |
| }, | |
| { | |
| "key": "ctrl+alt+v", | |
| "command": "workbench.action.tasks.runTask", | |
| "args": "paste-image-local" | |
| }, | |
| { | |
| "key": "ctrl+pausebreak", | |
| "command": "workbench.action.debug.pause" | |
| }, | |
| { | |
| "key": "alt+w", | |
| "command": "editor.action.toggleWordWrap" | |
| }, | |
| { | |
| "key": "ctrl+shift+alt+n", | |
| "command": "workbench.action.newWindow" | |
| }, | |
| { | |
| "key": "ctrl+t", | |
| "command": "workbench.action.files.newUntitledFile" | |
| }, | |
| { | |
| "key": "ctrl+k ctrl+d", | |
| "command": "editor.action.formatDocument" | |
| }, | |
| { | |
| "key": "ctrl+shift+a", | |
| "command": "editor.action.sortLinesAscending" | |
| }, | |
| { | |
| "key": "shift+enter", | |
| "command": "editor.action.joinLines", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "alt+f9", | |
| "command": "editor.debug.action.selectionToRepl" | |
| }, | |
| { | |
| "key": "shift+f9", | |
| "command": "editor.debug.action.selectionToRepl" | |
| }, | |
| { | |
| "key": "ctrl+alt+left", | |
| "command": "subwordNavigation.cursorSubwordLeft" | |
| }, | |
| { | |
| "key": "ctrl+alt+right", | |
| "command": "subwordNavigation.cursorSubwordRight" | |
| }, | |
| { | |
| "key": "ctrl+alt+shift+left", | |
| "command": "subwordNavigation.cursorSubwordLeftSelect" | |
| }, | |
| { | |
| "key": "ctrl+alt+shift+right", | |
| "command": "subwordNavigation.cursorSubwordRightSelect" | |
| }, | |
| { | |
| "key": "alt+backspace", | |
| "command": "subwordNavigation.deleteSubwordLeft" | |
| }, | |
| { | |
| "key": "alt+delete", | |
| "command": "subwordNavigation.deleteSubwordRight" | |
| }, | |
| { | |
| "key": "f6", | |
| "command": "workbench.action.tasks.runTask" | |
| }, | |
| { | |
| "key": "f1", | |
| "command": "workbench.action.showCommands" | |
| }, | |
| { | |
| "key": "ctrl+shift+alt+f11", | |
| "command": "workbench.action.openWorkspaceSettings" | |
| }, | |
| { | |
| "key": "ctrl+b", | |
| "command": "md-shortcut.toggleBold", | |
| "when": "editorTextFocus && editorLangId == 'markdown'" | |
| }, | |
| { | |
| "key": "ctrl+shift+1", | |
| "command": "md-shortcut.toggleTitleH1", | |
| "when": "editorTextFocus && editorLangId == 'markdown'" | |
| }, | |
| { | |
| "key": "ctrl+shift+2", | |
| "command": "md-shortcut.toggleTitleH2", | |
| "when": "editorTextFocus && editorLangId == 'markdown'" | |
| }, | |
| { | |
| "key": "ctrl+shift+3", | |
| "command": "md-shortcut.toggleTitleH3", | |
| "when": "editorTextFocus && editorLangId == 'markdown'" | |
| }, | |
| { | |
| "key": "ctrl+shift+4", | |
| "command": "md-shortcut.toggleTitleH4", | |
| "when": "editorTextFocus && editorLangId == 'markdown'" | |
| }, | |
| { | |
| "key": "ctrl+.", | |
| "command": "md-shortcut.toggleBullets", | |
| "when": "editorTextFocus && editorLangId == 'markdown'" | |
| }, | |
| { | |
| "key": "ctrl+*", | |
| "command": "md-shortcut.toggleBullets", | |
| "when": "editorTextFocus && editorLangId == 'markdown'" | |
| }, | |
| { | |
| "key": "ctrl+k", | |
| "command": "md-shortcut.toggleInlineCode", | |
| "when": "editorTextFocus && editorLangId == 'markdown'" | |
| }, | |
| { | |
| "key": "ctrl+l", | |
| "command": "md-shortcut.toggleLink", | |
| "when": "editorTextFocus && editorLangId == 'markdown'" | |
| }, | |
| { | |
| "key": "ctrl+shift+w", | |
| "when": "!editorIsOpen" | |
| }, | |
| { | |
| "key": "ctrl+,", | |
| "command": "workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "alt+n", | |
| "command": "workbench.action.files.openFileInNewWindow" | |
| }, | |
| { | |
| "key": "ctrl+shift+alt+f12", | |
| "command": "workbench.action.openGlobalKeybindingsFile" | |
| }, | |
| { | |
| "key": "ctrl+shift+h", | |
| "command": "workbench.action.openRecent" | |
| }, | |
| { | |
| "key": "f7", | |
| "command": "workbench.action.tasks.test" | |
| }, | |
| { | |
| "key": "ctrl+m", | |
| "command": "" | |
| }, | |
| { | |
| "key": "ctrl+w", | |
| "when": "!editorIsOpen" | |
| }, | |
| { | |
| "key": "alt+left", | |
| "command": "workbench.action.navigateBack" | |
| }, | |
| { | |
| "key": "alt+right", | |
| "command": "workbench.action.navigateForward" | |
| }, | |
| } |
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": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 15, | |
| "editor.lineHeight": 22, | |
| "editor.minimap.renderCharacters": false, | |
| "editor.smoothScrolling": true, | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.openEditors.visible": 0, | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| "**/node_modules": true, | |
| "**/*.ini": true | |
| }, | |
| "files.defaultLanguage": "markdown", | |
| "git.autofetch": true, | |
| "git.confirmSync": false, | |
| "git.enableSmartCommit": true, | |
| "telemetry.enableCrashReporter": false, | |
| "telemetry.enableTelemetry": false, | |
| "terminal.external.windowsExec": "C:\\Program Files\\Git\\bin\\bash.exe", | |
| "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
| "todohighlight.isEnable": true, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "update.channel": "default", | |
| "update.enableWindowsBackgroundUpdates": true, | |
| "window.menuBarVisibility": "toggle", | |
| "window.zoomLevel": 0, | |
| "workbench.colorCustomizations": { | |
| "[Dracula]": { | |
| "sideBar.background": "#282A36", | |
| "sideBar.border": "#282A36", | |
| "activityBar.border": "#282A36", | |
| "activityBar.background": "#282A36", | |
| }, | |
| }, | |
| "workbench.colorTheme": "Dracula", | |
| "workbench.iconTheme": "vs-nomo-dark", | |
| "workbench.settings.openDefaultSettings": false, | |
| }, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment