Skip to content

Instantly share code, notes, and snippets.

@Scanerrr
Last active October 14, 2019 20:43
Show Gist options
  • Save Scanerrr/b40d4eb1f538053e12dda7840f60eef1 to your computer and use it in GitHub Desktop.
Save Scanerrr/b40d4eb1f538053e12dda7840f60eef1 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-10-14T20:43:44.571Z","extensionVersion":"v3.4.3"}
[
{
"metadata": {
"id": "6e440e71-8ed9-4f25-bb78-4b13096b8a03",
"publisherId": "formulahendry.auto-rename-tag",
"publisherDisplayName": "formulahendry"
},
"name": "auto-rename-tag",
"publisher": "formulahendry",
"version": "0.1.0"
},
{
"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": "532533c9-a894-4a58-9eee-bbfbe7c06f71",
"publisherId": "mikestead.dotenv",
"publisherDisplayName": "mikestead"
},
"name": "dotenv",
"publisher": "mikestead",
"version": "1.0.1"
},
{
"metadata": {
"id": "eaa2127d-cb69-4ab9-8505-a60c9ee5f28b",
"publisherId": "oderwat.indent-rainbow",
"publisherDisplayName": "oderwat"
},
"name": "indent-rainbow",
"publisher": "oderwat",
"version": "7.4.0"
},
{
"metadata": {
"id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90",
"publisherId": "esbenp.prettier-vscode",
"publisherDisplayName": "esbenp"
},
"name": "prettier-vscode",
"publisher": "esbenp",
"version": "2.3.0"
},
{
"metadata": {
"id": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a",
"publisherId": "dbaeumer.vscode-eslint",
"publisherDisplayName": "dbaeumer"
},
"name": "vscode-eslint",
"publisher": "dbaeumer",
"version": "1.9.1"
},
{
"metadata": {
"id": "06cc3e44-aedb-41b8-a4ea-29ebf3c491fd",
"publisherId": "jpoissonnier.vscode-styled-components",
"publisherDisplayName": "jpoissonnier"
},
"name": "vscode-styled-components",
"publisher": "jpoissonnier",
"version": "0.0.26"
}
]
{
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"workbench.editor.showTabs": true,
"editor.renderIndentGuides": false,
"workbench.colorCustomizations": {
"activityBarBadge.background": "#00BCD4",
"list.activeSelectionForeground": "#00BCD4",
"list.inactiveSelectionForeground": "#00BCD4",
"list.highlightForeground": "#00BCD4",
"scrollbarSlider.activeBackground": "#00BCD450",
"editorSuggestWidget.highlightForeground": "#00BCD4",
"textLink.foreground": "#00BCD4",
"progressBar.background": "#00BCD4",
"pickerGroup.foreground": "#00BCD4",
"tab.activeBorder": "#00BCD4"
},
"workbench.colorTheme": "Visual Studio Dark",
"php.validate.executablePath": "C:/OSPanel/modules/php/PHP-7.2/php.exe",
"git.path": "C:/Program Files/Git/bin/git.exe",
"explorer.confirmDelete": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.statusBar.feedback.visible": false,
"editor.fontSize": 15,
"editor.tabSize": 2,
"workbench.editor.tabSizing": "shrink",
"editor.insertSpaces": false,
"editor.glyphMargin": false,
"editor.smoothScrolling": true,
"files.exclude": {
"**/.idea": true,
"**/node_modules": true
},
"window.zoomLevel": 0,
"guides.indent.showFirstIndentGuides": false,
"guides.sendUsagesAndStats": false,
"bracketPairColorizer.showHorizontalScopeLine": false,
"bracketPairColorizer.timeOut": 100,
"indentRainbow.colors": [
"rgba(16,16,16,0.1)",
"rgba(16,16,16,0.3)",
"rgba(16,16,16,0.6)",
"rgba(16,16,16,0.4)",
"rgba(16,16,16,0.2)"
],
"sync.gist": "b40d4eb1f538053e12dda7840f60eef1",
"sync.quietSync": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": true,
"sync.autoUpload": true,
"sync.forceDownload": false,
"editor.minimap.enabled": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"gitlens.views.repositories.files.layout": "list",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
}
}
{
/*
// Place your snippets for PHP 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"
}
*/
"Var dump": {
"prefix": "dd",
"body": [
"echo '<pre>';",
"var_dump($1);",
"echo '<pre>';"
],
"description": "Pretty var_dump"
},
"Var dump die": {
"prefix": "ddd",
"body": [
"echo '<pre>';",
"var_dump($1);",
"echo '<pre>';",
"die();"
],
"description": "Pretty var_dump die"
},
"php": {
"prefix": "php",
"body": [
"<?php",
"$1",
"?>"
],
"description": "php tag"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment