Skip to content

Instantly share code, notes, and snippets.

@agalera
Last active October 11, 2019 12:15
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 agalera/61abb50c64bbde65b427d405cf80e8f9 to your computer and use it in GitHub Desktop.
Save agalera/61abb50c64bbde65b427d405cf80e8f9 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-10-11T12:15:48.249Z","extensionVersion":"v3.4.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.1.1"
},
{
"metadata": {
"id": "5cbdf58a-694a-4aba-af08-61d00842eb03",
"publisherId": "bierner.markdown-preview-github-styles",
"publisherDisplayName": "bierner"
},
"name": "markdown-preview-github-styles",
"publisher": "bierner",
"version": "0.1.6"
},
{
"metadata": {
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5",
"publisherId": "ms-python.python",
"publisherDisplayName": "ms-python"
},
"name": "python",
"publisher": "ms-python",
"version": "2019.10.41019"
},
{
"metadata": {
"id": "2e0c829b-bda6-4909-a6fa-f0f2e0e934ed",
"publisherId": "KnisterPeter.vscode-jira",
"publisherDisplayName": "KnisterPeter"
},
"name": "vscode-jira",
"publisher": "KnisterPeter",
"version": "0.6.0"
},
{
"metadata": {
"id": "daf8b44d-8aae-4da2-80c5-1f770219f643",
"publisherId": "DavidAnson.vscode-markdownlint",
"publisherDisplayName": "DavidAnson"
},
"name": "vscode-markdownlint",
"publisher": "DavidAnson",
"version": "0.30.2"
},
{
"metadata": {
"id": "5de7e9e0-945c-41f5-8fae-d61b3c7e687c",
"publisherId": "chun.vscode-translate",
"publisherDisplayName": "chun"
},
"name": "vscode-translate",
"publisher": "chun",
"version": "0.1.5"
}
]
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+alt+j",
"command": "workbench.action.togglePanel"
},
{
"key": "ctrl+j",
"command": "-workbench.action.togglePanel"
}
]
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true
},
"terminal.external.linuxExec": "terminator",
"terminal.integrated.fontFamily": "MESLO LG S for powerline",
"sync.gist": "61abb50c64bbde65b427d405cf80e8f9",
"sync.lastUpload": "2017-12-05T11:07:54.354Z",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastDownload": "2017-11-09T23:35:12.100Z",
"sync.forceDownload": false,
"sync.anonymousGist": false,
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"sync.askGistName": false,
"window.zoomLevel": 0,
"jira.baseUrl": "https://extranet-sd.qvantel.com",
"jira.projectNames": "DBSS",
"workbench.iconTheme": "vscode-icons",
"workbench.editor.labelFormat": "medium",
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}${separator}${appName}",
"editor.fontSize": 24,
"files.trimTrailingWhitespace": true,
"python.linting.flake8Enabled": true,
"gitlens.codeLens.enabled": false,
"editor.renderWhitespace": "none",
"gitlens.insiders": true,
"gitlens.statusBar.enabled": true,
"translation.api": "google",
"translation.targetLanguage": "es",
"vsicons.projectDetection.autoReload": true,
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"workbench.colorTheme": "Default Dark+",
"gitlens.blame.line.enabled": true,
"gitlens.gitExplorer.enabled": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"python.linting.mypyArgs": [
"--ignore-missing-imports",
"--follow-imports=silent",
"--python-version=3.6"
],
"editor.renderControlCharacters": true,
}
{
/*
// Place your snippets for Python here. Each snippet is defined under a snippet name and has a prefix, body and
// description. 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": {
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
*/
"ipdb": {
"prefix": "ipdb",
"body": [
"import ipdb; ipdb.set_trace()"
],
"description": "ipdb"
}
}
{"version":"7.19.0","status":0,"welcomeShown":true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment