Last active
March 5, 2018 00:11
-
-
Save Leocardoso94/507b764f30aa43b1d4feee85c3a8a2a0 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-03-05T00:11:15.232Z","extensionVersion":"v2.9.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
| [ | |
| { | |
| "metadata": { | |
| "id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
| "publisherId": "Shan.code-settings-sync", | |
| "publisherDisplayName": "Shan" | |
| }, | |
| "name": "code-settings-sync", | |
| "publisher": "Shan", | |
| "version": "2.9.0" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "dff6b801-247e-40e9-82e8-8c9b1d19d1b8", | |
| "publisherId": "christian-kohler.npm-intellisense", | |
| "publisherDisplayName": "christian-kohler" | |
| }, | |
| "name": "npm-intellisense", | |
| "publisher": "christian-kohler", | |
| "version": "1.3.0" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "044b4b31-2969-4af3-895d-855433b8b46d", | |
| "publisherId": "felixfbecker.php-debug", | |
| "publisherDisplayName": "felixfbecker" | |
| }, | |
| "name": "php-debug", | |
| "publisher": "felixfbecker", | |
| "version": "1.12.1" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "5e69f001-f945-4c97-baf0-320d82a153b3", | |
| "publisherId": "felixfbecker.php-intellisense", | |
| "publisherDisplayName": "felixfbecker" | |
| }, | |
| "name": "php-intellisense", | |
| "publisher": "felixfbecker", | |
| "version": "2.2.9" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "1a9300c9-36a6-44d1-9d09-ada3641b8727", | |
| "publisherId": "felixfbecker.php-pack", | |
| "publisherDisplayName": "felixfbecker" | |
| }, | |
| "name": "php-pack", | |
| "publisher": "felixfbecker", | |
| "version": "1.0.1" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "2f5dd8cb-d251-4d70-abfe-ddebcb077483", | |
| "publisherId": "octref.vetur", | |
| "publisherDisplayName": "octref" | |
| }, | |
| "name": "vetur", | |
| "publisher": "octref", | |
| "version": "0.11.7" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a", | |
| "publisherId": "dbaeumer.vscode-eslint", | |
| "publisherDisplayName": "dbaeumer" | |
| }, | |
| "name": "vscode-eslint", | |
| "publisher": "dbaeumer", | |
| "version": "1.4.7" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "9ccc1dd7-7ec4-4a46-bd4f-7d7b8b9d322a", | |
| "publisherId": "robertohuertasm.vscode-icons", | |
| "publisherDisplayName": "robertohuertasm" | |
| }, | |
| "name": "vscode-icons", | |
| "publisher": "robertohuertasm", | |
| "version": "7.20.0" | |
| }, | |
| { | |
| "metadata": { | |
| "id": "ae9e3eb0-3357-4cc0-90ee-598d2d384757", | |
| "publisherId": "eg2.vscode-npm-script", | |
| "publisherDisplayName": "eg2" | |
| }, | |
| "name": "vscode-npm-script", | |
| "publisher": "eg2", | |
| "version": "0.3.3" | |
| } | |
| ] |
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+;", | |
| "command": "editor.action.commentLine", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+/", | |
| "command": "-editor.action.commentLine", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "f12", | |
| "command": "editor.action.formatDocument" | |
| }, | |
| { | |
| "key": "ctrl+s", | |
| "command": "workbench.action.files.saveAll" | |
| }, | |
| ] |
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, | |
| "git.confirmSync": false, | |
| "css.validate": false, | |
| "scss.validate": false, | |
| "files.associations": { | |
| "*.shtm": "html", | |
| "*.jade": "jade" | |
| }, | |
| "editor.wordWrap": "on", | |
| "editor.snippetSuggestions": "inline", | |
| "workbench.iconTheme": "vscode-icons", | |
| "editor.fontFamily": "'Fira Code', Consolas, 'Courier New', monospace", | |
| "editor.fontLigatures": true, | |
| "editor.fontWeight": "normal", | |
| "explorer.confirmDelete": false, | |
| "git.autofetch": true, | |
| "explorer.confirmDragAndDrop": false, | |
| "vetur.format.defaultFormatter.html": "js-beautify-html", | |
| "[markdown]": { | |
| "editor.quickSuggestions": true | |
| }, | |
| "sync.gist": "507b764f30aa43b1d4feee85c3a8a2a0", | |
| "sync.lastUpload": "2018-03-05T00:08:19.877Z", | |
| "sync.autoDownload": false, | |
| "sync.autoUpload": true, | |
| "sync.lastDownload": "", | |
| "sync.forceDownload": false, | |
| "sync.host": "", | |
| "sync.pathPrefix": "", | |
| "sync.quietSync": false, | |
| "sync.askGistName": false, | |
| "sync.removeExtensions": true, | |
| "sync.syncExtensions": true, | |
| "eslint.autoFixOnSave": true | |
| } |
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
| {"version":"7.20.0","status":0,"welcomeShown":true} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment