Skip to content

Instantly share code, notes, and snippets.

@bfodeke
Last active March 13, 2018 16:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bfodeke/c0b8f60619bd0fea8f6c61e420c32822 to your computer and use it in GitHub Desktop.
Save bfodeke/c0b8f60619bd0fea8f6c61e420c32822 to your computer and use it in GitHub Desktop.
Visual Studio Code custom settings
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000,
"pathMappings": {
"/home/vagrant/docroot": "${workspaceRoot}/docroot",
},
"xdebugSettings": {
"show_hidden": 1
},
"log": true
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9000
},
]
}
{
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.quickSuggestions": false,
"editor.renderWhitespace": "boundary",
"editor.rulers": [80],
"files.trimTrailingWhitespace": true,
"terminal.external.osxExec": "iTerm.app",
"workbench.colorTheme": "Cobalt2",
"terminal.integrated.fontSize": 13,
"telemetry.enableTelemetry": true,
"phpcs.enable": true,
"phpcs.standard": "Drupal,DrupalPractice",
"emptyIndent.removeIndent": true,
"emptyIndent.highlightIndent": false,
"emptyIndent.highlightColor": "#F4660A",
"workbench.startupEditor": "newUntitledFile",
"editor.minimap.enabled": false,
"window.zoomLevel": 0,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"php": "html"
},
"files.associations": {
"*.module": "php",
"*.engine": "php",
"*.inc": "php",
"*.profile": "php",
"*.theme": "php",
"*.make": "php",
"*.test": "php",
"*.info": "php",
"*.install": "php"
},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": true,
"suppressWelcomeNotice": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment