Last active
February 12, 2018 10:47
-
-
Save cloudfroster/5b6d0020588dd54644fcee7a9feb8345 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":"2018-02-12T10:47:22.551Z","extensionVersion":"v2.8.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": "2.8.7" | |
}, | |
{ | |
"metadata": { | |
"id": "f60a60a6-95ba-42d4-b41c-3d24c1b89588", | |
"publisherId": "EditorConfig.EditorConfig", | |
"publisherDisplayName": "EditorConfig" | |
}, | |
"name": "EditorConfig", | |
"publisher": "EditorConfig", | |
"version": "0.12.0" | |
}, | |
{ | |
"metadata": { | |
"id": "d6f6cfea-4b6f-41f4-b571-6ad2ab7918da", | |
"publisherId": "lukehoban.Go", | |
"publisherDisplayName": "lukehoban" | |
}, | |
"name": "Go", | |
"publisher": "lukehoban", | |
"version": "0.6.76" | |
}, | |
{ | |
"metadata": { | |
"id": "2f5dd8cb-d251-4d70-abfe-ddebcb077483", | |
"publisherId": "octref.vetur", | |
"publisherDisplayName": "octref" | |
}, | |
"name": "vetur", | |
"publisher": "octref", | |
"version": "0.11.7" | |
}, | |
{ | |
"metadata": { | |
"id": "bd52cbde-b7af-40be-bf56-67e57b6027da", | |
"publisherId": "chenxsan.vscode-standard-format", | |
"publisherDisplayName": "chenxsan" | |
}, | |
"name": "vscode-standard-format", | |
"publisher": "chenxsan", | |
"version": "0.0.12" | |
}, | |
{ | |
"metadata": { | |
"id": "1daf68c7-0de4-4ca2-aa6f-51fb8eda40c0", | |
"publisherId": "coderfee.vscode-wxml", | |
"publisherDisplayName": "coderfee" | |
}, | |
"name": "vscode-wxml", | |
"publisher": "coderfee", | |
"version": "0.1.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
// 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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "shift+cmd+g", | |
"command": "workbench.view.scm" | |
}, | |
{ | |
"key": "ctrl+shift+g", | |
"command": "-workbench.view.scm" | |
} | |
] |
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
{ | |
"sync.gist": "5b6d0020588dd54644fcee7a9feb8345", | |
"sync.lastUpload": "2018-01-17T13:34:34.743Z", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.lastDownload": "", | |
"sync.forceDownload": false, | |
"sync.anonymousGist": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false, | |
"sync.askGistName": false, | |
"editor.smoothScrolling": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.sideBar.location": "left", | |
"workbench.statusBar.visible": true, | |
"workbench.activityBar.visible": false, | |
"editor.fontSize": 14, | |
"editor.fontFamily": "Monaco, 'Courier New', monospace", | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"vue" | |
], | |
"window.restoreWindows": "all", | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressUpdateNotice": true, | |
"suppressWelcomeNotice": true | |
}, | |
"files.associations": { | |
"*.wpy": "vue", | |
"*.wxss": "css" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment