Skip to content

Instantly share code, notes, and snippets.

@Pipe-Runner
Last active October 23, 2018 08:43
Show Gist options
  • Save Pipe-Runner/014171c02249e138c3a330a4ab21400e to your computer and use it in GitHub Desktop.
Save Pipe-Runner/014171c02249e138c3a330a4ab21400e to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-10-23T08:43:04.858Z","extensionVersion":"v3.2.0"}
[
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "3.2.0"
},
{
"metadata": {
"id": "690b692e-e8a9-493f-b802-8089d50ac1b2",
"publisherId": "ms-vscode.cpptools",
"publisherDisplayName": "ms-vscode"
},
"name": "cpptools",
"publisher": "ms-vscode",
"version": "0.19.0"
},
{
"metadata": {
"id": "5db78037-f674-459f-a236-db622c427c5b",
"publisherId": "PKief.material-icon-theme",
"publisherDisplayName": "PKief"
},
"name": "material-icon-theme",
"publisher": "PKief",
"version": "3.6.0"
},
{
"metadata": {
"id": "24331b79-009c-4729-a530-baf3b2189cb1",
"publisherId": "kleber-swf.ocean-dark-extended",
"publisherDisplayName": "kleber-swf"
},
"name": "ocean-dark-extended",
"publisher": "kleber-swf",
"version": "1.4.0"
},
{
"metadata": {
"id": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5",
"publisherId": "ms-python.python",
"publisherDisplayName": "ms-python"
},
"name": "python",
"publisher": "ms-python",
"version": "2018.9.1"
},
{
"metadata": {
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a",
"publisherId": "dbaeumer.vscode-eslint",
"publisherDisplayName": "dbaeumer"
},
"name": "vscode-eslint",
"publisher": "dbaeumer",
"version": "1.6.1"
}
]
{
"workbench.colorTheme": "Material Theme Ocean High Contrast",
"editor.tabSize": 4,
"editor.fontFamily": "Fira Code Retina",
"editor.fontLigatures": true,
"editor.insertSpaces": false,
"editor.lineHeight": 26,
"editor.fontSize": 16,
"editor.formatOnSave": true,
"prettier.singleQuote": true,
"prettier.trailingComma": "es5",
"prettier.printWidth": 100,
"prettier.eslintIntegration": true,
"java.errors.incompleteClasspath.severity": "ignore",
"workbench.iconTheme": "eq-material-theme-icons-ocean",
"workbench.startupEditor": "newUntitledFile",
"vim.disableAnnoyingNeovimMessage": true,
"typescript.check.npmIsInstalled": false,
"cSpell.enabledLanguageIds": [
"latex",
"markdown",
"plaintext",
"restructuredtext",
"text",
"yml"
],
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.enablePreview": false,
"window.zoomLevel": 0,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true,
"**/*.class": true
},
"editor.minimap.enabled": false,
"python.linting.pep8Enabled": true,
"prettier.useTabs": true,
"prettier.tabWidth": 4,
"[yaml]": {
"editor.insertSpaces": false,
"editor.tabSize": 4
},
"sync.gist": "014171c02249e138c3a330a4ab21400e",
"sync.lastUpload": "",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastDownload": "",
"sync.forceDownload": false,
"sync.anonymousGist": false,
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"materialTheme.fixIconsRunning": false
}
{
/*
// Place your snippets for C++ 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"
}
*/
"Competitive coding snippet": {
"prefix": "init_comp",
"body": [
"#include <bits/stdc++.h>",
"",
"#define LL long long",
"#define Q queue",
"#define V vector",
"#define M map",
"#define PQ priority_queue",
"#define MOD 1000000007",
"",
"using namespace std;",
"",
"// PQ<int,V<int>,greater<int>> pq",
"",
"int main()",
"{\n\tios_base::sync_with_stdio(false);\n\tcin.tie(NULL);\n\n\t$0\n\treturn 0;\n}"
],
"description": "Initial snippet for competitive coding"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment