Skip to content

Instantly share code, notes, and snippets.

@shishirarora3
Last active February 21, 2020 01:59
Show Gist options
  • Save shishirarora3/3bd1996804e4458b07571b5f521bfe20 to your computer and use it in GitHub Desktop.
Save shishirarora3/3bd1996804e4458b07571b5f521bfe20 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-02-20T18:48:58.585Z","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": "1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd",
"publisherId": "msjsdiag.debugger-for-chrome",
"publisherDisplayName": "msjsdiag"
},
"name": "debugger-for-chrome",
"publisher": "msjsdiag",
"version": "4.12.4"
},
{
"metadata": {
"id": "296d0549-3842-4046-8ca8-bdb817946009",
"publisherId": "Shunqian.prettier-plus",
"publisherDisplayName": "Shunqian"
},
"name": "prettier-plus",
"publisher": "Shunqian",
"version": "3.0.0"
},
{
"metadata": {
"id": "6623619a-676d-4cde-943f-a3c193b44fc0",
"publisherId": "ChakrounAnas.turbo-console-log",
"publisherDisplayName": "ChakrounAnas"
},
"name": "turbo-console-log",
"publisher": "ChakrounAnas",
"version": "1.3.1"
},
{
"metadata": {
"id": "510e1d4e-1f9e-4910-8dbd-627c6f8a9791",
"publisherId": "akamud.vscode-javascript-snippet-pack",
"publisherDisplayName": "akamud"
},
"name": "vscode-javascript-snippet-pack",
"publisher": "akamud",
"version": "0.1.5"
}
]
{
"workbench.colorTheme": "Default High Contrast",
"window.zoomLevel": 1,
"editor.formatOnPaste": true,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1,
"editor.formatOnSave": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"explorer.confirmDelete": false,
"launch": {
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}",
"userDataDir": "${workspaceRoot}/out/chrome",
"runtimeExecutable": "/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary",
"sourceMaps": true,
"trace": true
}
],
"compounds": []
}
}
{
// 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"
// }
"ff": {
"prefix": "ff",
"body": [
"key: \"$1\",",
"type: \"$2\",",
"templateOptions: {",
" label: \"$3\"",
"}"
],
"description": "f f"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment