Skip to content

Instantly share code, notes, and snippets.

@jalopez
Created April 24, 2018 06:25
Show Gist options
  • Save jalopez/6207113ff93c7e08bcee00abe542b8b6 to your computer and use it in GitHub Desktop.
Save jalopez/6207113ff93c7e08bcee00abe542b8b6 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-04-24T06:24:47.017Z","extensionVersion":"v2.9.0"}
[
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "2.9.0"
},
{
"metadata": {
"id": "f60a60a6-95ba-42d4-b41c-3d24c1b89588",
"publisherId": "EditorConfig.EditorConfig",
"publisherDisplayName": "EditorConfig"
},
"name": "EditorConfig",
"publisher": "EditorConfig",
"version": "0.12.1"
},
{
"metadata": {
"id": "bc64531a-9b98-46f5-8ef9-88334d02cd60",
"publisherId": "JakeBecker.elixir-ls",
"publisherDisplayName": "JakeBecker"
},
"name": "elixir-ls",
"publisher": "JakeBecker",
"version": "0.2.19"
},
{
"metadata": {
"id": "3e891cf9-53cb-49a3-8d01-8f0b1f0afb29",
"publisherId": "codezombiech.gitignore",
"publisherDisplayName": "codezombiech"
},
"name": "gitignore",
"publisher": "codezombiech",
"version": "0.5.0"
},
{
"metadata": {
"id": "a41c1549-4053-44d4-bf30-60fc809b4a86",
"publisherId": "christian-kohler.path-intellisense",
"publisherDisplayName": "christian-kohler"
},
"name": "path-intellisense",
"publisher": "christian-kohler",
"version": "1.4.2"
},
{
"metadata": {
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90",
"publisherId": "esbenp.prettier-vscode",
"publisherDisplayName": "esbenp"
},
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "1.3.1"
},
{
"metadata": {
"id": "67e66172-30c7-4478-8f5d-6eac4ae755dc",
"publisherId": "mohsen1.prettify-json",
"publisherDisplayName": "mohsen1"
},
"name": "prettify-json",
"publisher": "mohsen1",
"version": "0.0.3"
},
{
"metadata": {
"id": "6df845ea-159a-4848-bdf4-60d9b2cbd13c",
"publisherId": "trongthanh.theme-boxythemekit",
"publisherDisplayName": "trongthanh"
},
"name": "theme-boxythemekit",
"publisher": "trongthanh",
"version": "0.2.0"
},
{
"metadata": {
"id": "450d63ed-8ac6-4694-b26e-77cb20bcb25e",
"publisherId": "qinjia.view-in-browser",
"publisherDisplayName": "qinjia"
},
"name": "view-in-browser",
"publisher": "qinjia",
"version": "0.0.5"
},
{
"metadata": {
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a",
"publisherId": "dbaeumer.vscode-eslint",
"publisherDisplayName": "dbaeumer"
},
"name": "vscode-eslint",
"publisher": "dbaeumer",
"version": "1.4.8"
},
{
"metadata": {
"id": "6aef71bc-661a-4042-ad05-d2e190b39082",
"publisherId": "moppitz.vscode-extension-auto-import",
"publisherDisplayName": "moppitz"
},
"name": "vscode-extension-auto-import",
"publisher": "moppitz",
"version": "1.3.3"
},
{
"metadata": {
"id": "9ccc1dd7-7ec4-4a46-bd4f-7d7b8b9d322a",
"publisherId": "robertohuertasm.vscode-icons",
"publisherDisplayName": "robertohuertasm"
},
"name": "vscode-icons",
"publisher": "robertohuertasm",
"version": "7.22.0"
},
{
"metadata": {
"id": "7997a8ae-1fae-4022-b834-12f6318aeffd",
"publisherId": "Orta.vscode-jest",
"publisherDisplayName": "Orta"
},
"name": "vscode-jest",
"publisher": "Orta",
"version": "2.7.0"
}
]
// Coloque sus enlaces de teclado en este archivo para sobrescribir los valores predeterminados.
[
{ "key": "cmd+r", "command": "editor.action.rename",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly" }
]
{
"files.autoSave": "onFocusChange",
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.iconTheme": "vscode-icons",
"editor.renderLineHighlight": "none",
"editor.tabCompletion": true,
"files.insertFinalNewline": true,
"editor.formatOnSave": true,
"[scss]": {
"editor.formatOnSave": false
},
"vsicons.dontShowNewVersionMessage": true,
"vsicons.projectDetection.disableDetect": true,
"javascript.implicitProjectConfig.experimentalDecorators": true,
"workbench.startupEditor": "newUntitledFile",
"prettier.eslintIntegration": true,
"prettier.requireConfig": true
}
{
/*
// Place your snippets for JavaScript 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"
}
*/
"it test": {
"prefix": "it",
"body": [
"it('${1:should}', () => {",
"$0",
"});"
]
},
"describe": {
"prefix": "describe",
"body": [
"describe('${1:when}', () => {",
"$0",
"});"
]
}
}
{"version":"7.22.0","status":0,"welcomeShown":true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment