Last active
November 19, 2016 03:02
-
-
Save graycreate/38a28500aa669d2f907355d7d3df68ee to your computer and use it in GitHub Desktop.
Visual Studio Code Sync Settings 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":"2016-11-19T03:02:49.870Z"} |
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": "ac3a3342-db76-40ef-9277-4657632d3bfe", | |
"publisherDisplayName": "Shan Khan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "2.3.8" | |
}, | |
{ | |
"metadata": { | |
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5", | |
"publisherId": "1ba8bd00-2ad1-4be0-a007-5b4b954c1ee7", | |
"publisherDisplayName": "Don Jayamanne" | |
}, | |
"name": "python", | |
"publisher": "donjayamanne", | |
"version": "0.5.2" | |
}, | |
{ | |
"metadata": { | |
"id": "d96e79c6-8b25-4be3-8545-0e0ecefcae03", | |
"publisherId": "5d63889b-1b67-4b1f-8350-4f1dce041a26", | |
"publisherDisplayName": "vscodevim" | |
}, | |
"name": "vim", | |
"publisher": "vscodevim", | |
"version": "0.4.2" | |
}, | |
{ | |
"metadata": { | |
"id": "ccf9294f-f78f-429a-8856-387624db2432", | |
"publisherId": "3b7d8640-99aa-431b-ac5e-0969a2794cf2", | |
"publisherDisplayName": "hnw" | |
}, | |
"name": "vscode-auto-open-markdown-preview", | |
"publisher": "hnw", | |
"version": "0.0.3" | |
}, | |
{ | |
"metadata": { | |
"id": "9ccc1dd7-7ec4-4a46-bd4f-7d7b8b9d322a", | |
"publisherId": "3d894ec1-7c48-4c7d-9d12-9738c4d94db3", | |
"publisherDisplayName": "Roberto Huertas" | |
}, | |
"name": "vscode-icons", | |
"publisher": "robertohuertasm", | |
"version": "4.0.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
// 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 | |
[ | |
] |
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 settings in this file to overwrite the default settings | |
{ | |
"http.proxy": "http://proxy.ghui.me:25/", | |
"workbench.statusBar.visible": true, | |
"window.zoomLevel": 0, | |
"python.pythonPath": "python3", | |
"editor.formatOnSave": true, | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": [ | |
"j", | |
"j" | |
], | |
"after": [ | |
"<Esc>" | |
] | |
} | |
], | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/.DS_Store": true, | |
"**/.vscode": true | |
} | |
, | |
"editor.cursorStyle": "block" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment