Last active
June 6, 2018 12:25
-
-
Save gustavo-depaula/fffc4ee6aad7aa5741b77d17a4f762db to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
This file contains 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":"2018-06-06T12:24:58.985Z","extensionVersion":"v2.9.2"} |
This file contains 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": "2.9.2" | |
} | |
] |
This file contains 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 overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.terminal.focus", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+d", | |
"command": "editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+alt+n", | |
"command": "-editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+x ctrl+n", | |
"command": "workbench.action.files.newUntitledFile" | |
}, | |
{ | |
"key": "ctrl+n", | |
"command": "-workbench.action.files.newUntitledFile" | |
}, | |
{ | |
"key": "ctrl+e", | |
"command": "cursorEnd" | |
}, | |
{ | |
"key": "ctrl+x", | |
"command": "editor.action.clipboardCutAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+x", | |
"command": "-editor.action.clipboardCutAction", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "ctrl+f", | |
"command": "cursorRight" | |
}, | |
{ | |
"key": "ctrl+b", | |
"command": "cursorLeft" | |
}, | |
{ | |
"key": "ctrl+x ctrl+f", | |
"command": "actions.find" | |
}, | |
{ | |
"key": "ctrl+f", | |
"command": "-actions.find" | |
} | |
] |
This file contains 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 | |
[ | |
{ | |
"key": "ctrl+'", | |
"command": "toggleSuggestionDetails", | |
"when": "editorTextFocus && suggestWidgetVisible" | |
}, | |
{ | |
"key": "ctrl+space", | |
"command": "-toggleSuggestionDetails", | |
"when": "editorTextFocus && suggestWidgetVisible" | |
}, | |
{ | |
"key": "ctrl+space", | |
"command": "-editor.action.triggerSuggest", | |
"when": "editorHasCompletionItemProvider && editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "alt+.", | |
"command": "editor.action.goToDeclaration", | |
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
}, | |
{ | |
"key": "f12", | |
"command": "-editor.action.goToDeclaration", | |
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
}, | |
{ | |
"key": "alt+,", | |
"command": "workbench.action.navigateBack" | |
}, | |
{ | |
"key": "ctrl+-", | |
"command": "-workbench.action.navigateBack" | |
} | |
] |
This file contains 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.tabSize": 2, | |
"workbench.colorTheme": "Monokai", | |
"workbench.activityBar.visible": false, | |
"workbench.statusBar.visible": true, | |
"window.menuBarVisibility": "toggle", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.iconTheme": "vscode-icons", | |
"editor.minimap.enabled": false, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx", | |
"xml": { | |
"attr_quotes": "single" | |
} | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"prettier.singleQuote": true, | |
"prettier.semi": true, | |
"editor.formatOnPaste": false, | |
"editor.formatOnSave": false, | |
"sync.gist": "fffc4ee6aad7aa5741b77d17a4f762db", | |
"sync.lastUpload": "2018-06-06T12:22:59.392Z", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.lastDownload": "2018-05-09T14:26:54.468Z", | |
"sync.forceDownload": false, | |
"sync.anonymousGist": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false, | |
"sync.askGistName": false, | |
"[python]": { | |
"editor.formatOnSave": false, | |
}, | |
"window.zoomLevel": 0, | |
"eslint.options": { | |
"configFile": "/Users/gustavodepaula/.nvm/versions/node/v6.13.0/lib/node_modules/@loggi/web-builder/config/eslint.json" | |
}, | |
"eslint.nodePath": "/Users/gustavodepaula/.nvm/versions/node/v6.13.0/lib/node_modules/@loggi/web-builder/node_modules", | |
"search.quickOpen.includeSymbols": true, | |
"git.ignoreMissingGitWarning": true, | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"editor.fontSize": 11, | |
} |
This file contains 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
{"version":"7.23.0","status":0,"welcomeShown":true} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment