Skip to content

Instantly share code, notes, and snippets.

@codefoster
Last active October 25, 2016 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save codefoster/0a4de2f26b9fdd1b393c424029d5f512 to your computer and use it in GitHub Desktop.
Save codefoster/0a4de2f26b9fdd1b393c424029d5f512 to your computer and use it in GitHub Desktop.
Visual Studio code settings
[
{
"metadata": {
"galleryApiUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
"id": "214cbfb9-7c06-4467-bad4-357ae83eb587",
"publisherId": "4434843a-4ebf-4f44-84f5-4176380c492d",
"publisherDisplayName": "johnpapa"
},
"name": "Angular2",
"publisher": "johnpapa",
"version": "0.4.3"
},
{
"metadata": {
"galleryApiUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "ac3a3342-db76-40ef-9277-4657632d3bfe",
"publisherDisplayName": "Shan Khan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "1.3.0"
},
{
"metadata": {
"galleryApiUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",
"id": "f0468583-db03-40e7-b1f3-c6ce8c0ff984",
"publisherId": "a21445f8-fd83-46c9-b9e2-17c8cba9b89e",
"publisherDisplayName": "Sean McBreen"
},
"name": "MDTools",
"publisher": "seanmcbreen",
"version": "1.0.0"
}
]
{
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
}
{
/*
// Place your snippets for JSON 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, ${id} and ${id:label} and ${1:label} for variables. Variables with the same id are connected.
// Example:
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
*/
"Default jsconfig": {
"prefix": "jsc",
"body": [
" {",
" \"compilerOptions\": {",
" \"target\": \"es5\",",
" \"module\": \"commonjs\"",
" }",
"}"
],
"Default jsconfig.json file for just getting started"
}
}
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "shift+delete",
"command": "editor.action.deleteLines",
"when": "editorTextFocus"
}
]
// Place your settings in this file to overwrite the default settings
{
"terminal.integrated.shell.windows": "C:\\WINDOWS\\system32\\bash.exe",
"files.autoSave": "afterDelay",
// "editor.renderWhitespace": true,
"window.reopenFolders": "none",
"window.zoomLevel": 1,
"editor.fontSize": 18
}
{
/*
// Place your snippets for TypeScript 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, ${id} and ${id:label} and ${1:label} for variables. Variables with the same id are connected.
// Example:
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment