Last active
May 3, 2019 19:11
-
-
Save matt-erhart/68982ad3cc5f442bb32038c694df7aa9 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
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
| {"lastUpload":"2019-04-29T20:44:07.294Z","extensionVersion":"v3.2.9"} |
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
| [ | |
| { | |
| "metadata": { | |
| "id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
| "publisherId": "Shan.code-settings-sync", | |
| "publisherDisplayName": "Shan" | |
| }, | |
| "name": "code-settings-sync", | |
| "publisher": "Shan", | |
| "version": "3.2.9" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90", | |
| "publisherId": "esbenp.prettier-vscode", | |
| "publisherDisplayName": "esbenp" | |
| }, | |
| "name": "prettier-vscode", | |
| "publisher": "esbenp", | |
| "version": "1.9.0" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "06cc3e44-aedb-41b8-a4ea-29ebf3c491fd", | |
| "publisherId": "jpoissonnier.vscode-styled-components", | |
| "publisherDisplayName": "jpoissonnier" | |
| }, | |
| "name": "vscode-styled-components", | |
| "publisher": "jpoissonnier", | |
| "version": "0.0.26" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "9b2c953d-6ad4-46d1-b18e-7e5992d1d8a6", | |
| "publisherId": "akamud.vscode-theme-onedark", | |
| "publisherDisplayName": "akamud" | |
| }, | |
| "name": "vscode-theme-onedark", | |
| "publisher": "akamud", | |
| "version": "2.1.0" | |
| } | |
| ] |
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
| // Place your key bindings in this file to override the defaultsauto[] | |
| [ | |
| { | |
| "key": "alt+a", | |
| "command": "editor.action.formatDocument", | |
| "when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+alt+f", | |
| "command": "-editor.action.formatDocument", | |
| "when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+1", | |
| "command": "workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "ctrl+p", | |
| "command": "-workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "alt+2", | |
| "command": "workbench.action.gotoSymbol" | |
| }, | |
| { | |
| "key": "ctrl+shift+o", | |
| "command": "-workbench.action.gotoSymbol" | |
| }, | |
| { | |
| "key": "alt+3", | |
| "command": "workbench.action.showAllSymbols" | |
| }, | |
| { | |
| "key": "ctrl+t", | |
| "command": "-workbench.action.showAllSymbols" | |
| }, | |
| { | |
| "key": "alt+`", | |
| "command": "workbench.action.showCommands" | |
| }, | |
| { | |
| "key": "ctrl+shift+p", | |
| "command": "-workbench.action.showCommands" | |
| } | |
| ] |
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
| // Empty |
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
| { | |
| "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
| "workbench.activityBar.visible": false, | |
| "workbench.sideBar.location": "right", | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "sync.gist": "68982ad3cc5f442bb32038c694df7aa9", | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "workbench.colorTheme": "Atom One Dark" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment