Skip to content

Instantly share code, notes, and snippets.

@johngerome
Last active February 20, 2020 10:17
Show Gist options
  • Save johngerome/a816a82525bd243a12c817ea77f8f4f2 to your computer and use it in GitHub Desktop.
Save johngerome/a816a82525bd243a12c817ea77f8f4f2 to your computer and use it in GitHub Desktop.
VSCode Settings
{"lastUpload":"2020-02-20T10:17:23.142Z","extensionVersion":"v3.4.3"}
[
{
"metadata": {
"id": "7a0110bb-231a-4598-aa1b-0769ea46d28b",
"publisherId": "aaron-bond.better-comments",
"publisherDisplayName": "aaron-bond"
},
"name": "better-comments",
"publisher": "aaron-bond",
"version": "2.0.5"
},
{
"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": "f0c5397b-d357-4197-99f0-cb4202f22818",
"publisherId": "ms-vscode-remote.remote-wsl",
"publisherDisplayName": "ms-vscode-remote"
},
"name": "remote-wsl",
"publisher": "ms-vscode-remote",
"version": "0.42.3"
},
{
"metadata": {
"id": "085342db-9568-49b0-ad93-3223ac4c1baa",
"publisherId": "mrmlnc.vscode-apache",
"publisherDisplayName": "mrmlnc"
},
"name": "vscode-apache",
"publisher": "mrmlnc",
"version": "1.2.0"
},
{
"metadata": {
"id": "9ccc1dd7-7ec4-4a46-bd4f-7d7b8b9d322a",
"publisherId": "vscode-icons-team.vscode-icons",
"publisherDisplayName": "vscode-icons-team"
},
"name": "vscode-icons",
"publisher": "vscode-icons-team",
"version": "10.0.0"
}
]
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "shift+space",
"command": "editor.emmet.action.expandAbbreviation",
"when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus"
},
{
"key": "tab",
"command": "-editor.emmet.action.expandAbbreviation",
"when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorReadonly && !editorTabMovesFocus"
}
]
{
"git.ignoreMissingGitWarning": true,
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"php.suggest.basic": false,
"telemetry.enableTelemetry": false,
"editor.fontFamily": "'Dank Mono', Consolas, 'Courier New', monospace",
"editor.renderWhitespace": "all",
"workbench.colorTheme": "Monokai",
"workbench.tree.horizontalScrolling": true,
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"terminal.integrated.shellArgs.windows": [
"/K",
"D:\\Applications\\cmder_mini\\vscode.bat"
],
"telemetry.enableCrashReporter": false,
"php.executablePath": "D:\\DEVENV\\php-7.2.8\\php.exe",
"php.validate.executablePath": "D:\\DEVENV\\php-7.2.8\\php.exe",
"window.zoomLevel": 0,
"sync.autoUpload": true,
"sync.gist": "a816a82525bd243a12c817ea77f8f4f2",
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": false,
"sync.forceDownload": false,
"explorer.autoReveal": false,
"terminal.integrated.copyOnSelection": true,
"editor.fontSize": 13,
"editor.fontLigatures": true,
"workbench.startupEditor": "newUntitledFile",
"explorer.confirmDelete": false,
"breadcrumbs.enabled": false,
"terminal.integrated.fontSize": 12,
"window.titleBarStyle": "custom",
"javascript.validate.enable": false,
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "//",
"color": "#474747",
"strikethrough": true,
"backgroundColor": "transparent"
},
{
"tag": "@",
"color": "#2962FF",
"backgroundColor": "transparent"
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"backgroundColor": "transparent"
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"backgroundColor": "transparent"
}
],
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"php-cs-fixer.executablePath": "${extensionPath}\\php-cs-fixer.phar",
"php-cs-fixer.lastDownload": 1579316050095,
"terminal.integrated.fontFamily": "MesloLGS NF",
"terminal.integrated.shell.linux": "/bin/zsh",
"javascript.updateImportsOnFileMove.enabled": "always"
}
{
// 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"
// }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment