Created
October 21, 2020 12:58
-
-
Save Jmaiers/db2ee99e3f2e98a3384c89218c8db0e7 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":"2020-10-21T12:58:52.029Z","extensionVersion":"v3.4.3"} |
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": "214cbfb9-7c06-4467-bad4-357ae83eb587", | |
"publisherId": "johnpapa.Angular2", | |
"publisherDisplayName": "johnpapa" | |
}, | |
"name": "Angular2", | |
"publisher": "johnpapa", | |
"version": "9.1.2" | |
}, | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "Shan.code-settings-sync", | |
"publisherDisplayName": "Shan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "3.4.3" | |
}, | |
{ | |
"metadata": { | |
"id": "1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd", | |
"publisherId": "msjsdiag.debugger-for-chrome", | |
"publisherDisplayName": "msjsdiag" | |
}, | |
"name": "debugger-for-chrome", | |
"publisher": "msjsdiag", | |
"version": "4.12.11" | |
}, | |
{ | |
"metadata": { | |
"id": "fd110b00-4782-4794-bf1f-cdeae242954f", | |
"publisherId": "msjsdiag.debugger-for-edge", | |
"publisherDisplayName": "msjsdiag" | |
}, | |
"name": "debugger-for-edge", | |
"publisher": "msjsdiag", | |
"version": "1.0.15" | |
}, | |
{ | |
"metadata": { | |
"id": "5db78037-f674-459f-a236-db622c427c5b", | |
"publisherId": "PKief.material-icon-theme", | |
"publisherDisplayName": "PKief" | |
}, | |
"name": "material-icon-theme", | |
"publisher": "PKief", | |
"version": "4.3.0" | |
}, | |
{ | |
"metadata": { | |
"id": "f0c5397b-d357-4197-99f0-cb4202f22818", | |
"publisherId": "ms-vscode-remote.remote-wsl", | |
"publisherDisplayName": "ms-vscode-remote" | |
}, | |
"name": "remote-wsl", | |
"publisher": "ms-vscode-remote", | |
"version": "0.50.1" | |
}, | |
{ | |
"metadata": { | |
"id": "5a7017bf-c571-4d77-b902-6e56b16f539a", | |
"publisherId": "johnpapa.vscode-peacock", | |
"publisherDisplayName": "johnpapa" | |
}, | |
"name": "vscode-peacock", | |
"publisher": "johnpapa", | |
"version": "3.8.0" | |
}, | |
{ | |
"metadata": { | |
"id": "fd6d3dc6-b307-4589-82a6-78e2afec3d77", | |
"publisherId": "johnpapa.winteriscoming", | |
"publisherDisplayName": "johnpapa" | |
}, | |
"name": "winteriscoming", | |
"publisher": "johnpapa", | |
"version": "1.4.3" | |
} | |
] |
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 |
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 |
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
{ | |
"files.exclude": { | |
"**/.git": false, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true | |
}, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.matchBrackets": false, | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressUpdateNotice": false, | |
"suppressWelcomeNotice": true | |
}, | |
"editor.tabSize": 2, | |
"window.openFoldersInNewWindow": "on", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"sync.gist": "", | |
"trailing-spaces.trimOnSave": true, | |
"editor.rulers": [120], | |
"editor.formatOnSave": true, | |
"prettier.printWidth": 120, | |
"editor.wordWrapColumn": 120, | |
"prettier.arrowParens": "always", | |
"editor.wordWrap": "wordWrapColumn", | |
"workbench.colorTheme": "Winter is Coming (Dark Blue)", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"prettier.jsxSingleQuote": true, | |
"prettier.singleQuote": true, | |
"remote.WSL.fileWatcher.polling": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment