Skip to content

Instantly share code, notes, and snippets.

@Ebeldev
Last active November 7, 2018 20:47
Show Gist options
  • Save Ebeldev/e95b23c7f2a74ce6815114a6bc833649 to your computer and use it in GitHub Desktop.
Save Ebeldev/e95b23c7f2a74ce6815114a6bc833649 to your computer and use it in GitHub Desktop.
bcv
{"lastUpload":"2018-11-07T20:46:50.690Z","extensionVersion":"v3.2.0"}
[
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "3.2.0"
},
{
"metadata": {
"id": "33474ff6-baf7-461f-8275-a44cfd27d13a",
"publisherId": "sldobri.daily",
"publisherDisplayName": "sldobri"
},
"name": "daily",
"publisher": "sldobri",
"version": "6.0.3"
},
{
"metadata": {
"id": "949eb1e5-b41c-413f-99da-6b57cdaed1b4",
"publisherId": "Kasik96.format-indent",
"publisherDisplayName": "Kasik96"
},
"name": "format-indent",
"publisher": "Kasik96",
"version": "1.3.0"
},
{
"metadata": {
"id": "dd13f358-6e55-46d1-961e-79ef6cf9221b",
"publisherId": "2ndshift.fresh-material",
"publisherDisplayName": "2ndshift"
},
"name": "fresh-material",
"publisher": "2ndshift",
"version": "2.3.8"
},
{
"metadata": {
"id": "044b4b31-2969-4af3-895d-855433b8b46d",
"publisherId": "felixfbecker.php-debug",
"publisherDisplayName": "felixfbecker"
},
"name": "php-debug",
"publisher": "felixfbecker",
"version": "1.12.6"
},
{
"metadata": {
"id": "ca0094fa-0dc7-4847-ae5d-879442c099ca",
"publisherId": "neilbrayfield.php-docblocker",
"publisherDisplayName": "neilbrayfield"
},
"name": "php-docblocker",
"publisher": "neilbrayfield",
"version": "1.6.0"
},
{
"metadata": {
"id": "431aa1a8-74f4-43d5-a83b-f4960510da5f",
"publisherId": "ahmadawais.shades-of-purple",
"publisherDisplayName": "ahmadawais"
},
"name": "shades-of-purple",
"publisher": "ahmadawais",
"version": "3.20.0"
},
{
"metadata": {
"id": "fb374ce1-5343-46c8-a425-900fdad15523",
"publisherId": "wesbos.theme-cobalt2",
"publisherDisplayName": "wesbos"
},
"name": "theme-cobalt2",
"publisher": "wesbos",
"version": "2.1.6"
},
{
"metadata": {
"id": "612c107d-8eec-4ff4-a3de-c1b29d3f8042",
"publisherId": "gerane.Theme-Monokai-Cobalt",
"publisherDisplayName": "gerane"
},
"name": "Theme-Monokai-Cobalt",
"publisher": "gerane",
"version": "0.0.3"
},
{
"metadata": {
"id": "34647879-c168-49c3-8cb4-f7705064ca32",
"publisherId": "ms-vscode.Theme-PredawnKit",
"publisherDisplayName": "ms-vscode"
},
"name": "Theme-PredawnKit",
"publisher": "ms-vscode",
"version": "0.1.4"
},
{
"metadata": {
"id": "dffaf5a1-2219-434b-9d87-cb586fd59260",
"publisherId": "Equinusocio.vsc-material-theme",
"publisherDisplayName": "Equinusocio"
},
"name": "vsc-material-theme",
"publisher": "Equinusocio",
"version": "2.5.1"
},
{
"metadata": {
"id": "9df95cb4-c4e6-4de0-b771-f0cb91c96e7b",
"publisherId": "persoderlind.vscode-phpcbf",
"publisherDisplayName": "persoderlind"
},
"name": "vscode-phpcbf",
"publisher": "persoderlind",
"version": "0.0.8"
}
]
{
"php.validate.executablePath": "/usr/bin/php",
"editor.fontFamily": "Operator Mono, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 16,
"editor.lineHeight": 25,
"editor.letterSpacing": 0.5,
"files.trimTrailingWhitespace": true,
"editor.fontWeight": "400",
"prettier.eslintIntegration": true,
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "solid",
// Very important: Install this plugin: https://github.com/be5invis/vscode-custom-css
// You'll need to change this to a file URI scheme on your computer: https://en.wikipedia.org/wiki/File_URI_scheme
// Mac/Linux: file:///Users/YOUR-PC-USERNAME/.vscodestyles.css
// Windows: file:///C:/Users/YOUR-PC-USERNAME/.vscodestyles.css
"vscode_custom_css.imports": [
"file:///Users/wesbos/.vscodestyles.css"
],
"editor.renderWhitespace": "all",
"window.zoomLevel": -1,
"phpcbf.enable": true,
"phpcbf.standard": "WordPress",
"phpcbf.executablePath": "~/.composer/vendor/bin/phpcbf",
"workbench.iconTheme": "eq-material-theme-icons-ocean",
"workbench.colorTheme": "ƒ - Monokai - Operator Mono/Italic",
"sync.gist": "e95b23c7f2a74ce6815114a6bc833649"
}
{
// 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"
// }
"PRE": {
"prefix": "pr",
"body": [
"<?php echo'<pre>'; $0 echo '</pre>'; ?>"
],
"description": "echo pre tag"
},
"PHP": {
"prefix": "phpt",
"body": [
"<?php $0 ?>"
],
"description": "echo pre tag"
},
}
{
/*
// 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"
}
*/
"PRE": {
"prefix": "pr",
"body": [
"<?php echo'<pre>'; $0 echo '</pre>'; ?>"
],
"description": "echo pre tag"
},
"PRENOTAGS": {
"prefix": "prnt",
"body": [
"echo'<pre>'; $0 echo '</pre>';"
],
"description": "echo pre tag"
},
"PHPCONSOLELOG": {
"prefix": "pc",
"body": [
"echo \"<script>console.log('\" . $0 . \"');</script>\";"
],
"description": "Display javascript console.log in php code"
},
"PHPTAGS": {
"prefix": "phpt",
"body": [
"<?php $0 ?>"
],
"description": "Open and close php tags"
},
"PHPDUMP": {
"prefix": "pd",
"body": [
"<?php echo'<pre>'; var_dump($0); echo '</pre>'; ?>"
],
"description": "echo pre tag and var dump"
},
"PHPDUMPNOTAGS": {
"prefix": "pdnt",
"body": [
"echo'<pre>'; var_dump($0); echo '</pre>';"
],
"description": "echo pre tag and var dump"
},
"PHPINJS": {
"prefix": "phjs",
"body": [
"echo \"<script>$0</script>\";"
],
"description": "echo pre tag and var dump"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment