Last active
March 31, 2019 21:12
-
-
Save Kaelinator/710e19322b173386e41f6e73ca56326b 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-03-31T21:12:41.088Z","extensionVersion":"v3.2.7"} |
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.7" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "f57f68ea-9ee8-42b5-9a97-041d3e4278c4", | |
| "publisherId": "Dart-Code.dart-code", | |
| "publisherDisplayName": "Dart-Code" | |
| }, | |
| "name": "dart-code", | |
| "publisher": "Dart-Code", | |
| "version": "2.25.0" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "532533c9-a894-4a58-9eee-bbfbe7c06f71", | |
| "publisherId": "mikestead.dotenv", | |
| "publisherDisplayName": "mikestead" | |
| }, | |
| "name": "dotenv", | |
| "publisher": "mikestead", | |
| "version": "1.0.1" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "19804510-b475-4dae-b0f7-6ca08fd1af0c", | |
| "publisherId": "dsznajder.es7-react-js-snippets", | |
| "publisherDisplayName": "dsznajder" | |
| }, | |
| "name": "es7-react-js-snippets", | |
| "publisher": "dsznajder", | |
| "version": "2.1.2" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "f6c3ec04-6057-4d9c-b997-69cba07a6158", | |
| "publisherId": "Dart-Code.flutter", | |
| "publisherDisplayName": "Dart-Code" | |
| }, | |
| "name": "flutter", | |
| "publisher": "Dart-Code", | |
| "version": "2.25.0" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "98790d67-10fa-497c-9113-f6c7489207b2", | |
| "publisherId": "yzhang.markdown-all-in-one", | |
| "publisherDisplayName": "yzhang" | |
| }, | |
| "name": "markdown-all-in-one", | |
| "publisher": "yzhang", | |
| "version": "2.2.0" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "4ef6c2d5-de36-45a1-9015-18c1d4a3a25e", | |
| "publisherId": "albert.TabOut", | |
| "publisherDisplayName": "albert" | |
| }, | |
| "name": "TabOut", | |
| "publisher": "albert", | |
| "version": "0.1.6" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a", | |
| "publisherId": "dbaeumer.vscode-eslint", | |
| "publisherDisplayName": "dbaeumer" | |
| }, | |
| "name": "vscode-eslint", | |
| "publisher": "dbaeumer", | |
| "version": "1.8.2" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "65e3a4d3-aa36-48a6-bcb3-d68d87e455ad", | |
| "publisherId": "jevakallio.vscode-hacker-typer", | |
| "publisherDisplayName": "jevakallio" | |
| }, | |
| "name": "vscode-hacker-typer", | |
| "publisher": "jevakallio", | |
| "version": "0.1.1" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "77b70e30-3534-4098-9d6d-382a96babca4", | |
| "publisherId": "dkundel.vscode-new-file", | |
| "publisherDisplayName": "dkundel" | |
| }, | |
| "name": "vscode-new-file", | |
| "publisher": "dkundel", | |
| "version": "4.0.2" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "dde27962-923d-4d2a-b1a6-fd24d9ebbaf6", | |
| "publisherId": "yuichinukiyama.vscode-preview-server", | |
| "publisherDisplayName": "yuichinukiyama" | |
| }, | |
| "name": "vscode-preview-server", | |
| "publisher": "yuichinukiyama", | |
| "version": "1.2.1" | |
| } | |
| ] |
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 overwrite the defaults | |
| [ | |
| { | |
| "key": "ctrl+up", | |
| "command": "editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+up", | |
| "command": "-editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+down", | |
| "command": "editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+down", | |
| "command": "-editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+space", | |
| "command": "editor.emmet.action.expandAbbreviation", | |
| "when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus" | |
| }, | |
| { | |
| "key": "tab", | |
| "command": "-editor.emmet.action.expandAbbreviation", | |
| "when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus" | |
| }, | |
| { | |
| "key": "ctrl+space", | |
| "command": "insertSnippet", | |
| "when": "config.editor.tabCompletion && editorTextFocus && hasSnippetCompletions && !editorTabMovesFocus && !inSnippetMode" | |
| }, | |
| { | |
| "key": "tab", | |
| "command": "-insertSnippet", | |
| "when": "config.editor.tabCompletion && editorTextFocus && hasSnippetCompletions && !editorTabMovesFocus && !inSnippetMode" | |
| }, | |
| { | |
| "key": "ctrl+space", | |
| "command": "acceptSelectedSuggestion", | |
| "when": "editorTextFocus && suggestWidgetVisible" | |
| }, | |
| { | |
| "key": "tab", | |
| "command": "-acceptSelectedSuggestion", | |
| "when": "editorTextFocus && suggestWidgetVisible" | |
| }, | |
| { | |
| "key": "ctrl+shift+d", | |
| "command": "editor.action.copyLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+alt+down", | |
| "command": "-editor.action.copyLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+alt+up", | |
| "command": "-editor.action.copyLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+alt+d", | |
| "command": "workbench.view.debug" | |
| }, | |
| { | |
| "key": "ctrl+shift+d", | |
| "command": "-workbench.view.debug" | |
| }, | |
| { | |
| "key": "ctrl+shift+delete", | |
| "command": "editor.action.deleteLines", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+shift+k", | |
| "command": "-editor.action.deleteLines", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+f5", | |
| "command": "workbench.action.reloadWindow" | |
| }, | |
| { | |
| "key": "ctrl+f5", | |
| "command": "-workbench.action.debug.run", | |
| "when": "!inDebugMode" | |
| }, | |
| { | |
| "key": "ctrl+shift+alt+f", | |
| "command": "eslint.executeAutofix" | |
| }, | |
| { | |
| "key": "shift+alt+f", | |
| "command": "-editor.action.formatDocument", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+alt+f", | |
| "command": "workbench.action.findInFiles", | |
| "when": "!searchInputBoxFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+f", | |
| "command": "-workbench.action.findInFiles", | |
| "when": "editorTextFocus && !editorReadonly && !searchInputBoxFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+q", | |
| "command": "workbench.action.toggleMaximizedPanel" | |
| }, | |
| { | |
| "key": "ctrl+k ctrl+t", | |
| "command": "workbench.action.terminal.focus", | |
| "when": "!terminalFocus" | |
| }, | |
| { | |
| "key": "ctrl+k ctrl+t", | |
| "command": "-workbench.action.selectTheme" | |
| }, | |
| { | |
| "key": "ctrl+alt+f", | |
| "command": "workbench.view.search", | |
| "when": "!searchViewletVisible" | |
| }, | |
| { | |
| "key": "ctrl+shift+f", | |
| "command": "-workbench.view.search", | |
| "when": "!searchViewletVisible" | |
| }, | |
| { | |
| "key": "ctrl+alt+f", | |
| "command": "search.action.focusActiveEditor", | |
| "when": "searchInputBoxFocus && searchViewletVisible" | |
| }, | |
| { | |
| "key": "ctrl+shift+f", | |
| "command": "-search.action.focusActiveEditor", | |
| "when": "searchInputBoxFocus && searchViewletVisible" | |
| }, | |
| { | |
| "key": "ctrl+shift+f", | |
| "command": "-workbench.action.findInFiles", | |
| "when": "!searchInputBoxFocus" | |
| },{ | |
| "key": "ctrl+shift+f", | |
| "command": "editor.action.formatDocument", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+n", | |
| "command": "-workbench.action.files.newUntitledFile" | |
| }, | |
| { | |
| "key": "ctrl+n", | |
| "command": "newFile.createNewFile" | |
| }, | |
| { | |
| "key": "ctrl+alt+n", | |
| "command": "-newFile.createNewFile" | |
| }, | |
| { | |
| "key": "ctrl+b", | |
| "command": "workbench.action.quickOpenNavigateNextInViewPicker", | |
| "when": "inQuickOpen && inViewsPicker" | |
| }, | |
| { | |
| "key": "ctrl+q", | |
| "command": "-workbench.action.quickOpenNavigateNextInViewPicker", | |
| "when": "inQuickOpen && inViewsPicker" | |
| }, | |
| { | |
| "key": "ctrl+b", | |
| "command": "workbench.action.quickOpenView" | |
| }, | |
| { | |
| "key": "ctrl+q", | |
| "command": "-workbench.action.quickOpenView" | |
| }, | |
| { | |
| "key": "ctrl+b", | |
| "command": "-workbench.action.toggleSidebarVisibility" | |
| }, | |
| { | |
| "key": "ctrl+,", | |
| "command": "editor.action.smartSelect.grow", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+alt+right", | |
| "command": "-editor.action.smartSelect.grow", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+,", | |
| "command": "-workbench.action.openSettings" | |
| }, | |
| { | |
| "key": "ctrl+shift+,", | |
| "command": "-editor.action.inPlaceReplace.up", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+shift+,", | |
| "command": "editor.action.smartSelect.shrink", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+alt+left", | |
| "command": "-editor.action.smartSelect.shrink", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+i", | |
| "command": "-expandLineSelection", | |
| "when": "textInputFocus" | |
| } | |
| ] |
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
| { | |
| "git.enableSmartCommit": true, | |
| "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe", | |
| "editor.fontSize": 18, | |
| "editor.tabSize": 2, | |
| "editor.minimap.enabled": false, | |
| "editor.mouseWheelScrollSensitivity": 2, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.mouseWheelZoom": true, | |
| "editor.renderIndentGuides": true, | |
| "editor.roundedSelection": false, | |
| "editor.quickSuggestions": { | |
| "other": false, | |
| "comments": false, | |
| "strings": false | |
| }, | |
| "editor.suggestOnTriggerCharacters": false, | |
| "git.confirmSync": false, | |
| "sync.gist": "710e19322b173386e41f6e73ca56326b", | |
| "sync.autoDownload": false, | |
| "sync.autoUpload": false, | |
| "sync.forceDownload": false, | |
| "sync.quietSync": false, | |
| "sync.askGistName": false, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "window.zoomLevel": 1, | |
| "explorer.confirmDragAndDrop": false, | |
| "git.path": "D:\\Program Files\\Git\\bin\\git.exe", | |
| "git.autofetch": true, | |
| "workbench.colorTheme": "Monokai Dimmed", | |
| "editor.snippetSuggestions": "top", | |
| "newFile.defaultFileExtension": ".js", | |
| "newFile.expandBraces": true, | |
| "newFile.showPathRelativeTo": "project", | |
| "sync.removeExtensions": true, | |
| "sync.syncExtensions": true, | |
| "editor.suggest.localityBonus": true, | |
| "editor.parameterHints.enabled": false, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "eslint.autoFixOnSave": true, | |
| "files.eol": "\n", | |
| "markdown.extension.toc.githubCompatibility": true, | |
| "markdown.extension.toc.levels": "3..6" | |
| } |
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
| { | |
| "Print to console": { | |
| "prefix": "log", | |
| "body": [ | |
| "console.log($1)$0" | |
| ], | |
| "description": "Log output to console" | |
| }, | |
| "Stateful React Component": { | |
| "prefix": "stf", | |
| "body": [ | |
| "import React, { Component } from 'react'", | |
| "", | |
| "export default class ${TM_FILENAME/(.*)\\..+$/$1/} extends Component {", | |
| "", | |
| "\trender() {", | |
| "\t\treturn (", | |
| "\t\t\t<>", | |
| "\t\t\t\t$1", | |
| "\t\t\t</>", | |
| "\t\t)", | |
| "\t}", | |
| "}" | |
| ], | |
| "description": "Create a stateful React component" | |
| }, | |
| "Stateless Functional React Component": { | |
| "prefix": "stl", | |
| "body": [ | |
| "import React from 'react'", | |
| "", | |
| "export default (props) => (", | |
| "\t<>$1</>", | |
| ")" | |
| ], | |
| "description": "Create a stateless functional React component" | |
| } | |
| } |
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
| { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment