Last active
June 25, 2017 19:48
-
-
Save david-genger/32a152172255393f821425e2e8478718 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":"2017-06-25T19:48:52.934Z","extensionVersion":"v2.8.1"} |
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": "0eff8732-6021-4101-9633-17c4239ad46b", | |
"publisherId": "8d711594-469c-48e6-b07c-32197084b71c", | |
"publisherDisplayName": "hollowtree" | |
}, | |
"name": "canvas-snippets", | |
"publisher": "hollowtree", | |
"version": "0.3.1" | |
}, | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "ac3a3342-db76-40ef-9277-4657632d3bfe", | |
"publisherDisplayName": "Shan Khan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "2.8.1" | |
}, | |
{ | |
"metadata": { | |
"id": "d0bfc4ab-1d3a-4487-8782-7cf6027b4fff", | |
"publisherId": "5f5636e7-69ed-4afe-b5d6-8d231fb3d3ee", | |
"publisherDisplayName": "Microsoft" | |
}, | |
"name": "csharp", | |
"publisher": "ms-vscode", | |
"version": "1.10.0" | |
}, | |
{ | |
"metadata": { | |
"id": "be992f3f-9f22-4b66-a1d2-ecad04c28a28", | |
"publisherId": "7fe357ee-5480-4a7d-a4e9-009d9438c2a3", | |
"publisherDisplayName": "Mohamed Abusaid" | |
}, | |
"name": "html-snippets", | |
"publisher": "abusaidm", | |
"version": "0.1.0" | |
}, | |
{ | |
"metadata": { | |
"id": "489abeb0-400c-4a08-bde4-cf5d9b863a32", | |
"publisherId": "738ff3bb-8e77-45d5-bd26-7c9ad62959b9", | |
"publisherDisplayName": "Daniel Imms" | |
}, | |
"name": "lorem-ipsum", | |
"publisher": "Tyriar", | |
"version": "1.0.0" | |
}, | |
{ | |
"metadata": { | |
"id": "491c2499-73f0-40a0-b1d4-de8d8cdaeedb", | |
"publisherId": "c1a5e7c5-a7a3-4207-83cf-915e4ed4e52d", | |
"publisherDisplayName": "Benjamin Marinacci" | |
}, | |
"name": "theme-material", | |
"publisher": "bcmarinacci", | |
"version": "1.3.0" | |
}, | |
{ | |
"metadata": { | |
"id": "f092a211-cdbf-431d-a3d6-34a3f7264573", | |
"publisherId": "a3b9c4b5-9f62-4ab3-a3e2-bc424d31d067", | |
"publisherDisplayName": "Sandeep Somavarapu" | |
}, | |
"name": "todotasks", | |
"publisher": "sandy081", | |
"version": "0.5.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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.formatOnSave": false, | |
"editor.fontSize": 12.5, | |
"workbench.colorTheme": "Default Light+", | |
"workbench.editor.openPositioning": "left", | |
"workbench.editor.enablePreview": false, | |
"files.associations": { | |
"*.ejs": "html", | |
"*.eco": "html" | |
}, | |
"workbench.editor.showTabs": false, | |
"workbench.welcome.enabled": false, | |
"sync.gist": "32a152172255393f821425e2e8478718", | |
"sync.lastUpload": "2017-06-25T19:47:21.969Z", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.lastDownload": "", | |
"sync.forceDownload": false, | |
"sync.anonymousGist": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false | |
} |
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
{ | |
/* | |
// Place your snippets for Markdown 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" | |
} | |
*/ | |
"Post Meta": { | |
"prefix": "post", | |
"body": [ | |
"---", | |
"title: ${0:title}", | |
"type: '${1:post}'", | |
"date: '2017-${2:01}-${3:17}'", | |
"companey: ${4:}", | |
"realLink: ${5:}", | |
"dealLink: ${6:}", | |
"realVendor: ${11:}", | |
"realImage: post-${7:}-real.jpg", | |
"dealImage: post-${8:}-deal.jpg", | |
"realPrice: ${9:}", | |
"dealPrice: ${10:}", | |
"---" | |
], | |
"description": "post it" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment