Skip to content

Instantly share code, notes, and snippets.

@yaph
Last active May 31, 2021 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yaph/b03715666f0977c3301c5fba015333a5 to your computer and use it in GitHub Desktop.
Save yaph/b03715666f0977c3301c5fba015333a5 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2021-05-31T23:09:01.158Z","extensionVersion":"v3.4.3"}
[
{
"metadata": {
"id": "2d6fea35-f68e-461d-9b7b-5cd05be99451",
"publisherId": "njpwerner.autodocstring",
"publisherDisplayName": "njpwerner"
},
"name": "autodocstring",
"publisher": "njpwerner",
"version": "0.5.4"
},
{
"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": "f6dbd813-b0a0-42c1-90ea-10dde9d925a7",
"publisherId": "streetsidesoftware.code-spell-checker",
"publisherDisplayName": "streetsidesoftware"
},
"name": "code-spell-checker",
"publisher": "streetsidesoftware",
"version": "1.10.2"
},
{
"metadata": {
"id": "911799f7-d784-4bdc-982b-f78afd435187",
"publisherId": "streetsidesoftware.code-spell-checker-german",
"publisherDisplayName": "streetsidesoftware"
},
"name": "code-spell-checker-german",
"publisher": "streetsidesoftware",
"version": "0.1.8"
},
{
"metadata": {
"id": "8d6dcf6f-1957-4dd5-809e-addb07d8c1fb",
"publisherId": "streetsidesoftware.code-spell-checker-spanish",
"publisherDisplayName": "streetsidesoftware"
},
"name": "code-spell-checker-spanish",
"publisher": "streetsidesoftware",
"version": "1.0.7"
},
{
"metadata": {
"id": "121396ad-85a1-45ec-9fd1-d95028a847f5",
"publisherId": "naumovs.color-highlight",
"publisherDisplayName": "naumovs"
},
"name": "color-highlight",
"publisher": "naumovs",
"version": "2.3.0"
},
{
"metadata": {
"id": "d1b606b4-7db2-45fb-b5b9-6637d0895a3c",
"publisherId": "RandomFractalsInc.geo-data-viewer",
"publisherDisplayName": "RandomFractalsInc"
},
"name": "geo-data-viewer",
"publisher": "RandomFractalsInc",
"version": "2.4.0"
},
{
"metadata": {
"id": "6c2f1801-1e7f-45b2-9b5c-7782f1e076e8",
"publisherId": "ms-toolsai.jupyter",
"publisherDisplayName": "ms-toolsai"
},
"name": "jupyter",
"publisher": "ms-toolsai",
"version": "2021.6.832593372"
},
{
"metadata": {
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5",
"publisherId": "ms-python.python",
"publisherDisplayName": "ms-python"
},
"name": "python",
"publisher": "ms-python",
"version": "2021.5.842923320"
},
{
"metadata": {
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a",
"publisherId": "dbaeumer.vscode-eslint",
"publisherDisplayName": "dbaeumer"
},
"name": "vscode-eslint",
"publisher": "dbaeumer",
"version": "2.1.20"
},
{
"metadata": {
"id": "92d01ae4-5a2e-4299-990c-7905798fb719",
"publisherId": "jsynowiec.vscode-insertdatestring",
"publisherDisplayName": "jsynowiec"
},
"name": "vscode-insertdatestring",
"publisher": "jsynowiec",
"version": "2.3.0"
},
{
"metadata": {
"id": "daf8b44d-8aae-4da2-80c5-1f770219f643",
"publisherId": "DavidAnson.vscode-markdownlint",
"publisherDisplayName": "DavidAnson"
},
"name": "vscode-markdownlint",
"publisher": "DavidAnson",
"version": "0.41.0"
},
{
"metadata": {
"id": "364d2426-116a-433a-a5d8-a5098dc3afbd",
"publisherId": "ms-python.vscode-pylance",
"publisherDisplayName": "ms-python"
},
"name": "vscode-pylance",
"publisher": "ms-python",
"version": "2021.5.4"
}
]
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+k",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+shift+w",
"command": "editor.action.toggleWordWrap"
},
{
"key": "alt+z",
"command": "-editor.action.toggleWordWrap"
}
]
{
"editor.renderWhitespace": "boundary",
"files.exclude": {
"__pycache__": true,
".mypy_cache": true
},
"markdownlint.config": {
"MD025": false,
"MD034": false,
"MD047": false
},
"editor.accessibilitySupport": "off",
"editor.minimap.enabled": false,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"workbench.editor.enablePreview": false,
"workbench.enableExperiments": false,
"workbench.settings.enableNaturalLanguageSearch": false,
"editor.fontSize": 18,
"editor.fontFamily": "'Ubuntu Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"files.trimTrailingWhitespace": true,
"cSpell.language": "en,de",
"cSpell.userWords": [
"chdir",
"dateutil",
"fscache",
"inplace",
"isna",
"iterrows",
"logya",
"networkx",
"pytest",
"rmtree",
"shutil"
],
"breadcrumbs.enabled": true,
"sync.gist": "b03715666f0977c3301c5fba015333a5",
"python.linting.flake8Args": ["--ignore=E501"],
"[python]": {
"editor.rulers": [120]
},
"update.mode": "manual",
"jupyter.sendSelectionToInteractiveWindow": false,
"workbench.editor.decorations.badges": true,
"workbench.editorAssociations": [
{
"viewType": "jupyter.notebook.ipynb",
"filenamePattern": "*.ipynb"
}
]
}
{
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
// Placeholders with the same ids are connected.
// Example:
// "Print to console": {
// "scope": "javascript,typescript",
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
// HTML
"Insert copyright": {
"scope": "html",
"prefix": "copyright",
"body": "© <script>document.write(new Date().getFullYear())</script>"
},
// JavaScript
"Insert JavaScript debugger": {
"scope": "javascript",
"prefix": "debug",
"body": "debugger;"
},
// Python
"Insert coding": {
"scope": "python",
"prefix": "enc",
"body": "# -*- coding: utf-8 -*-"
},
"Insert hashbang": {
"scope": "python",
"prefix": "env",
"body": "#!/usr/bin/env python"
},
"Insert IPython debugger": {
"scope": "python",
"prefix": "debug",
"body": "from IPython.core.debugger import Pdb\nPdb().set_trace()"
},
// Restructured Text
"Insert heading 1": {
"scope": "restructuredtext",
"prefix": "h1",
"body": "HEADING 1\n========="
},
"Insert heading 2": {
"scope": "restructuredtext",
"prefix": "h2",
"body": "HEADING 2\n---------"
},
"Insert heading 3": {
"scope": "restructuredtext",
"prefix": "h3",
"body": "HEADING 2\n^^^^^^^^^"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment