Created
July 21, 2020 12:25
-
-
Save pantuts/df69d4f1c5cb93ae6c0aaa194fe7255e 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":"2020-07-21T12:24:59.949Z","extensionVersion":"v3.4.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
[ | |
{ | |
"metadata": { | |
"id": "2d6fea35-f68e-461d-9b7b-5cd05be99451", | |
"publisherId": "njpwerner.autodocstring", | |
"publisherDisplayName": "njpwerner" | |
}, | |
"name": "autodocstring", | |
"publisher": "njpwerner", | |
"version": "0.5.3" | |
}, | |
{ | |
"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": "4de763bd-505d-4978-9575-2b7696ecf94e", | |
"publisherId": "eamodio.gitlens", | |
"publisherDisplayName": "eamodio" | |
}, | |
"name": "gitlens", | |
"publisher": "eamodio", | |
"version": "10.2.2" | |
}, | |
{ | |
"metadata": { | |
"id": "d697a7e8-00fa-4039-9067-4b69a9a90f6e", | |
"publisherId": "kiteco.kite", | |
"publisherDisplayName": "kiteco" | |
}, | |
"name": "kite", | |
"publisher": "kiteco", | |
"version": "0.121.0" | |
}, | |
{ | |
"metadata": { | |
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90", | |
"publisherId": "esbenp.prettier-vscode", | |
"publisherDisplayName": "esbenp" | |
}, | |
"name": "prettier-vscode", | |
"publisher": "esbenp", | |
"version": "5.1.3" | |
}, | |
{ | |
"metadata": { | |
"id": "1b747f06-3789-4ebd-ac99-f1fe430c3347", | |
"publisherId": "alefragnani.project-manager", | |
"publisherDisplayName": "alefragnani" | |
}, | |
"name": "project-manager", | |
"publisher": "alefragnani", | |
"version": "11.1.0" | |
}, | |
{ | |
"metadata": { | |
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5", | |
"publisherId": "ms-python.python", | |
"publisherDisplayName": "ms-python" | |
}, | |
"name": "python", | |
"publisher": "ms-python", | |
"version": "2020.6.91350" | |
}, | |
{ | |
"metadata": { | |
"id": "9ccc1dd7-7ec4-4a46-bd4f-7d7b8b9d322a", | |
"publisherId": "vscode-icons-team.vscode-icons", | |
"publisherDisplayName": "vscode-icons-team" | |
}, | |
"name": "vscode-icons", | |
"publisher": "vscode-icons-team", | |
"version": "10.2.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
// 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
// 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
{ | |
"telemetry.enableTelemetry": false, | |
"python.linting.enabled": true, | |
"python.linting.maxNumberOfProblems": 50, | |
"python.linting.flake8Enabled": true, | |
"editor.formatOnSave": false, | |
"python.formatting.provider": "autopep8", | |
"editor.wordWrap": "on", | |
"explorer.confirmDelete": false, | |
"editor.fontFamily": "'Roboto Mono', 'Iosevka', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
"editor.fontSize": 14, | |
"editor.lineHeight": 18, | |
"workbench.editor.enablePreview": true, | |
"editor.fontLigatures": true, | |
"editor.detectIndentation": true, | |
"files.trimTrailingWhitespace": true, | |
"python.linting.flake8Args": [ | |
"--max-line-length=150", | |
"--ignore=E402,F841,F401,E302,E305,E128,E501", | |
], | |
"workbench.tree.indent": 25, | |
"python.pythonPath": "/usr/local/opt/[email protected]/bin/python3", | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.startupEditor": "newUntitledFile", | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"breadcrumbs.enabled": true, | |
"editor.minimap.enabled": false, | |
"explorer.sortOrder": "type", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment