phuongbao90
12/27/2017 - 4:13 PM

Visual Studio Code Settings Sync Gist

Visual Studio Code Settings Sync Gist

{"version":"7.20.0","status":2,"welcomeShown":true}
{
	// 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"
	// }
	"php": {
		"prefix": "php",
		"body": [
			"<?php ?>"
		],
		"description": "php"
	},
	"ebr": {
		"prefix": "ebr",
		"body": [
			"echo \"<br>\";"
		],
		"description": "ebr"
	},
	"__construct": {
		"prefix": "__const",
		"body": [
			"${1:protected} $${2:dummy};",
			"",
			"public function __construct($${2:dummy})",
			"{",
			"    $$this->${2:dummy} = $${2:dummy};",
			"}"
		],
		"description": "__construct"
	},
	"Comment Line": {
		"prefix": "comstart",
		"body": [
			"<!-- ───────────────────────────────────────────── ${1:example} ───── -->"
		],
		"description": "Comment start"
	},
	"Comment End": {
		"prefix": "comend",
		"body": [
			"<!-- ──────────────────────────────────────────────────────────────── -->"
		],
		"description": "Comment End"
	},
	"PDO->prepare": {
		"prefix": "pdoprepare",
		"body": [
			"$$query = $$this->connection->prepare('${3:example}');",
			"$$query->bindValue('', , PDO::PARAM_STR);",
			"$$query->bindValue('', , PDO::PARAM_INT);",
			"$$query->execute();",
			"",
			"${1:return $$result = $$query->fetch();}",
			"${2:return $$result = $$query->fetchAll();}"
		],
		"description": "PDO->prepare"
	},
	"htmlentities": {
		"prefix": "htmlentitiesCustom",
		"body": [
			"$${1:example} = htmlentities($${1:example}, ENT_QUOTES, 'UTF-8');"
		],
		"description": "htmlentities"
	},
	"Route::get": {
		"prefix": "Route::get",
		"body": [
			"Route::get('${1:example}',[",
			"  'uses' => '${2:example}',",
			"  'as' => '${3:example}',",
			"])"
		],
		"description": "Route::get"
	},
}
{
	/*
	// 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"
	}
*/
	"const": {
		"prefix": "c",
		"body": [
			"const ${1:name} = "
		],
		"description": "const"
	},
	"console.log": {
		"prefix": "log",
		"body": [
			"console.log(${1:default})"
		],
		"description": "console.log"
	},
	"console.table": {
		"prefix": "table",
		"body": [
			"console.table(${1:default})"
		],
		"description": "console.table"
	},
	"document.getElementById": {
		"prefix": "getid",
		"body": [
			"document.getElementById('${1:element}');"
		],
		"description": "document.getElementById"
	},
	"query": {
		"prefix": "qr",
		"body": [
			"document.querySelector(\"${1:example}\").addEventListener(\"${2:example}\", ${3:example});"
		],
		"description": "query"
	}
}
{
	/*
		// Place your snippets for HTML 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"
		},


	*/
	"php": {
		"prefix": "php",
		"body": [
			"<?php ${1:} ?>"
		],
		"description": "php"
	},
	"ebr": {
		"prefix": "ebr",
		"body": [
			"echo \"<br>\";"
		],
		"description": "ebr"
	},
	"__construct": {
		"prefix": "__const",
		"body": [
			"${1:protected} $${2:dummy};",
			"",
			"public function __construct($${2:dummy})",
			"{",
			"    $$this->${2:dummy} = $${2:dummy};",
			"}"
		],
		"description": "__construct"
	}
}
{
	// Place your snippets for blade 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"
	// },
	"csrf_field": {
		"prefix": "csrf_field",
		"body": [
			"{{csrf_field()}}"
		],
		"description": "csrf_field"
	}
}
{
  "editor.acceptSuggestionOnEnter": "off",
  "editor.acceptSuggestionOnCommitCharacter": false,
  "editor.quickSuggestions": {
    "strings": true
  },
  // language settings
  "emmet.includeLanguages": {
    "javascript": "javascriptreact"
  },
  "files.associations": {
    "*.js": "javascriptreact"
  },
  // live server
  "liveServer.settings.port": 3457,
  "liveServer.settings.root": "/",
  // setting sync
  "sync.gist": "230625d39f31acd4e7677d3f997e56e4",
  "sync.lastUpload": "2018-05-23T09:36:47.785Z",
  "sync.autoDownload": false,
  "sync.autoUpload": false,
  "sync.lastDownload": "2018-03-19T05:20:10.383Z",
  "sync.forceDownload": false,
  "sync.host": "",
  "sync.pathPrefix": "",
  "sync.quietSync": false,
  "sync.askGistName": false,
  "sync.removeExtensions": true,
  "sync.syncExtensions": true,
  "window.zoomLevel": 0,
  "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
  //  prettier
  "prettier.eslintIntegration": true,
  "editor.formatOnSave": true,
  "editor.smoothScrolling": true,
  "editor.mouseWheelScrollSensitivity": 3,
  // php
  "php.validate.executablePath": "C:/xampp/php/php.exe",
  "php.suggest.basic": false,
  "php-cs-fixer.autoFixBySemicolon": true,
  "php-cs-fixer.formatHtml": true,
  "php-cs-fixer.onsave": true,
  // "php-cs-fixer.executablePath": "C:/Users/phuon/Dropbox/Workstation/editor-files/php-cs-fixer-v2.phar",
  // "php-cs-fixer.executablePathWindows": "C:/Users/phuon/Dropbox/Workstation/editor-files/php-cs-fixer-v2.phar",
  // "php-cs-fixer.config": "C:/Users/phuon/Dropbox/Workstation/editor-files/.php_cs.dist",
  "php-cs-fixer.executablePath": "C:/Users/phuon/Dropbox/Workstation/editor-files/php-cs-fixer.phar",
  "php-cs-fixer.executablePathWindows": "C:/Users/phuon/Dropbox/Workstation/editor-files/php-cs-fixer.phar",
  "php-cs-fixer.config": "C:/Users/phuon/Dropbox/Workstation/editor-files/.php-cs-fixer",
  "emmet.triggerExpansionOnTab": true, // enable tab to expanse emmet tags
  "blade.format.enable": true, // if you would like to enable blade format
  /*
  .##.....##.####
  .##.....##..##.
  .##.....##..##.
  .##.....##..##.
  .##.....##..##.
  .##.....##..##.
  ..#######..####
  */
  "workbench.colorTheme": "Default High Contrast",
  "editor.fontFamily": "  Monaco,  Fira Code , Consolas, 'Courier New', monospace",
  "editor.fontLigatures": true,
  "window.menuBarVisibility": "toggle",
  "editor.minimap.enabled": false,
  // customize text color
  "editor.tokenColorCustomizations": {
    "comments": "#7f7f7f",
    "functions": "#ffff00",
    "variables": "#51D88A",
    "strings": "#FFFFFF",
    "numbers": "#F89406",
    "keywords": "#EB5286",
    "types": "#19B5FE",
    // customize text style
    "textMateRules": [
      {
        "scope": [
          "entity.name.function",
          // "keyword",
          // "meta.function",
          "meta.function-call",
          // "support.function",
        ],
        "settings": {
          "fontStyle": "bold"
        }
      },
      {
        "scope": "entity.other.attribute-name",
        "settings": {
          "foreground": "#A779E9",
        }
      },
      {
        "scope": "entity.name.tag",
        "settings": {
          "foreground": "#FA7EA8",
          "fontStyle": "bold"
        }
      },
      {
        "scope": "string.quoted",
        "settings": {
          "foreground": "#c39797",
        }
      },
    ]
  },
  // customize editor color
  "workbench.colorCustomizations": {
    "[Default High Contrast]": {
      "statusBar.background": "#000040",
      "panel.background": "#000040",
      "sideBar.background": "#000040"
    },
    "editor.background": "#000026",
  },
  // Cobalt theme
  "files.trimTrailingWhitespace": true,
  "editor.fontWeight": "500",
  "editor.cursorStyle": "line",
  "editor.cursorWidth": 3,
  "editor.cursorBlinking": "phase",
  "editor.renderWhitespace": "boundary",
  "workbench.sideBar.location": "left",
  "editor.quickSuggestionsDelay": 0,
  "files.trimFinalNewlines": true,
  "editor.fontSize": 15,
  "editor.tabSize": 4,
  "editor.wordWrap": "on",
  "files.autoSave": "off",
  "banner-comments.h1": "ANSI Shadow",
  "[php]": {},
  "editor.lineHeight": 0,
  "liveServer.settings.donotShowInfoMsg": true,
}
[
  {
    "metadata": {
      "id": "d3836729-9cc1-42c1-b2af-d50071f57d29",
      "publisherId": "formulahendry.auto-close-tag",
      "publisherDisplayName": "formulahendry"
    },
    "name": "auto-close-tag",
    "publisher": "formulahendry",
    "version": "0.5.6"
  },
  {
    "metadata": {
      "id": "6e440e71-8ed9-4f25-bb78-4b13096b8a03",
      "publisherId": "formulahendry.auto-rename-tag",
      "publisherDisplayName": "formulahendry"
    },
    "name": "auto-rename-tag",
    "publisher": "formulahendry",
    "version": "0.0.15"
  },
  {
    "metadata": {
      "id": "fee1d0b9-7712-44d2-9917-a14c35562f93",
      "publisherId": "heyimfuzz.banner-comments",
      "publisherDisplayName": "heyimfuzz"
    },
    "name": "banner-comments",
    "publisher": "heyimfuzz",
    "version": "0.3.0"
  },
  {
    "metadata": {
      "id": "f583eafd-aa0d-4ccb-8f44-d1e610389660",
      "publisherId": "CoenraadS.bracket-pair-colorizer",
      "publisherDisplayName": "CoenraadS"
    },
    "name": "bracket-pair-colorizer",
    "publisher": "CoenraadS",
    "version": "1.0.55"
  },
  {
    "metadata": {
      "id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
      "publisherId": "Shan.code-settings-sync",
      "publisherDisplayName": "Shan"
    },
    "name": "code-settings-sync",
    "publisher": "Shan",
    "version": "2.9.2"
  },
  {
    "metadata": {
      "id": "cc386f71-a95f-48d7-87ea-707c29758a46",
      "publisherId": "vmsynkov.colonize",
      "publisherDisplayName": "vmsynkov"
    },
    "name": "colonize",
    "publisher": "vmsynkov",
    "version": "2.2.2"
  },
  {
    "metadata": {
      "id": "121396ad-85a1-45ec-9fd1-d95028a847f5",
      "publisherId": "naumovs.color-highlight",
      "publisherDisplayName": "naumovs"
    },
    "name": "color-highlight",
    "publisher": "naumovs",
    "version": "2.3.0"
  },
  {
    "metadata": {
      "id": "89789d74-b90b-4cbf-b846-c903d9929362",
      "publisherId": "karyfoundation.comment",
      "publisherDisplayName": "karyfoundation"
    },
    "name": "comment",
    "publisher": "karyfoundation",
    "version": "5.0.2"
  },
  {
    "metadata": {
      "id": "1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd",
      "publisherId": "msjsdiag.debugger-for-chrome",
      "publisherDisplayName": "msjsdiag"
    },
    "name": "debugger-for-chrome",
    "publisher": "msjsdiag",
    "version": "4.4.3"
  },
  {
    "metadata": {
      "id": "532533c9-a894-4a58-9eee-bbfbe7c06f71",
      "publisherId": "mikestead.dotenv",
      "publisherDisplayName": "mikestead"
    },
    "name": "dotenv",
    "publisher": "mikestead",
    "version": "1.0.1"
  },
  {
    "metadata": {
      "id": "c16f95f6-9b42-4a24-9bf4-245d4ea54fc5",
      "publisherId": "bradgashler.htmltagwrap",
      "publisherDisplayName": "bradgashler"
    },
    "name": "htmltagwrap",
    "publisher": "bradgashler",
    "version": "0.0.7"
  },
  {
    "metadata": {
      "id": "a2cec723-5349-460d-9de9-0fd1f8d3456f",
      "publisherId": "xabikos.JavaScriptSnippets",
      "publisherDisplayName": "xabikos"
    },
    "name": "JavaScriptSnippets",
    "publisher": "xabikos",
    "version": "1.6.0"
  },
  {
    "metadata": {
      "id": "3b58a227-618a-4b57-a06b-6984a2a8d1ba",
      "publisherId": "onecentlin.laravel-blade",
      "publisherDisplayName": "onecentlin"
    },
    "name": "laravel-blade",
    "publisher": "onecentlin",
    "version": "1.18.0"
  },
  {
    "metadata": {
      "id": "b63c44fd-0457-4696-99e9-dbfdf70d77de",
      "publisherId": "ritwickdey.LiveServer",
      "publisherDisplayName": "ritwickdey"
    },
    "name": "LiveServer",
    "publisher": "ritwickdey",
    "version": "4.0.0"
  },
  {
    "metadata": {
      "id": "7945a942-917a-47c0-b6a3-75d5c92e1adb",
      "publisherId": "leninp.materialize-snippets",
      "publisherDisplayName": "leninp"
    },
    "name": "materialize-snippets",
    "publisher": "leninp",
    "version": "1.4.3"
  },
  {
    "metadata": {
      "id": "acfa08ec-e98b-4b39-8561-1bf1938e71da",
      "publisherId": "jakebathman.mysql-syntax",
      "publisherDisplayName": "jakebathman"
    },
    "name": "mysql-syntax",
    "publisher": "jakebathman",
    "version": "1.3.1"
  },
  {
    "metadata": {
      "id": "03b96169-4c19-4c9e-ada8-d5d208ebe80e",
      "publisherId": "philsinatra.nested-comments",
      "publisherDisplayName": "philsinatra"
    },
    "name": "nested-comments",
    "publisher": "philsinatra",
    "version": "2.1.3"
  },
  {
    "metadata": {
      "id": "dff6b801-247e-40e9-82e8-8c9b1d19d1b8",
      "publisherId": "christian-kohler.npm-intellisense",
      "publisherDisplayName": "christian-kohler"
    },
    "name": "npm-intellisense",
    "publisher": "christian-kohler",
    "version": "1.3.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": "b06b65b2-6ea9-4045-b166-54aa63205261",
      "publisherId": "junstyle.php-cs-fixer",
      "publisherDisplayName": "junstyle"
    },
    "name": "php-cs-fixer",
    "publisher": "junstyle",
    "version": "0.1.80"
  },
  {
    "metadata": {
      "id": "044b4b31-2969-4af3-895d-855433b8b46d",
      "publisherId": "felixfbecker.php-debug",
      "publisherDisplayName": "felixfbecker"
    },
    "name": "php-debug",
    "publisher": "felixfbecker",
    "version": "1.12.3"
  },
  {
    "metadata": {
      "id": "5e69f001-f945-4c97-baf0-320d82a153b3",
      "publisherId": "felixfbecker.php-intellisense",
      "publisherDisplayName": "felixfbecker"
    },
    "name": "php-intellisense",
    "publisher": "felixfbecker",
    "version": "2.3.1"
  },
  {
    "metadata": {
      "id": "96fa4707-6983-4489-b7c5-d5ffdfdcce90",
      "publisherId": "esbenp.prettier-vscode",
      "publisherDisplayName": "esbenp"
    },
    "name": "prettier-vscode",
    "publisher": "esbenp",
    "version": "1.3.1"
  },
  {
    "metadata": {
      "id": "085342db-9568-49b0-ad93-3223ac4c1baa",
      "publisherId": "mrmlnc.vscode-apache",
      "publisherDisplayName": "mrmlnc"
    },
    "name": "vscode-apache",
    "publisher": "mrmlnc",
    "version": "1.1.1"
  },
  {
    "metadata": {
      "id": "829a192d-496c-44ac-87f3-0a84ce36a853",
      "publisherId": "emmanuelbeziat.vscode-great-icons",
      "publisherDisplayName": "emmanuelbeziat"
    },
    "name": "vscode-great-icons",
    "publisher": "emmanuelbeziat",
    "version": "2.1.32"
  },
  {
    "metadata": {
      "id": "0c39b1dc-26df-4737-bb73-a98913b3ddad",
      "publisherId": "jtlowe.vscode-icon-theme",
      "publisherDisplayName": "jtlowe"
    },
    "name": "vscode-icon-theme",
    "publisher": "jtlowe",
    "version": "1.6.2"
  },
  {
    "metadata": {
      "id": "ae9e3eb0-3357-4cc0-90ee-598d2d384757",
      "publisherId": "eg2.vscode-npm-script",
      "publisherDisplayName": "eg2"
    },
    "name": "vscode-npm-script",
    "publisher": "eg2",
    "version": "0.3.4"
  },
  {
    "metadata": {
      "id": "35e4102c-97db-4bb9-952a-4b725fb00bc9",
      "publisherId": "konstantin.wrapSelection",
      "publisherDisplayName": "konstantin"
    },
    "name": "wrapSelection",
    "publisher": "konstantin",
    "version": "0.6.8"
  }
]
{"lastUpload":"2018-05-24T12:05:46.574Z","extensionVersion":"v2.9.2"}