Skip to content

Instantly share code, notes, and snippets.

@shengyou
Created August 26, 2016 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shengyou/d2dab00ca796b513e273dd79712b7660 to your computer and use it in GitHub Desktop.
Save shengyou/d2dab00ca796b513e273dd79712b7660 to your computer and use it in GitHub Desktop.
我的 VS Code 設定
// Place your settings in this file to overwrite the default settings
{
// Editor
// Controls if the editor should automatically format the line after typing
"editor.formatOnType": true,
// Zoom the font of the editor when using mouse wheel and holding Ctrl
"editor.mouseWheelZoom": true,
// Controls whether the editor should render indent guides
"editor.renderIndentGuides": true,
// Files
// Controls auto save of dirty files. Accepted values: "off", "afterDelay", "onFocusChange". If set to "afterDelay" you can configure the delay in "files.autoSaveDelay".
"files.autoSave": "onFocusChange",
// Integrated Terminal
// The path of the shell that the terminal uses on Windows. When using shells shipped with Windows (cmd, PowerShell or Bash on Ubuntu), prefer C:\Windows\sysnative over C:\Windows\System32 to use the 64-bit versions.
"terminal.integrated.shell.windows": "C:\\Users\\shengyou\\Desktop\\wagon\\git\\bin\\bash.exe",
// PHP
// Whether php validation is enabled or not.
"php.validate.enable": true,
// Points to the php executable.
"php.validate.executablePath": null,
// Whether the linter is run on save or on type.
"php.validate.run": "onType",
// Composer Dependency Manager for PHP Configuration
// Is composer enabled.
"composer.enabled": true,
// Path to the composer executable.
"composer.executablePath": "C:\\Users\\shengyou\\Desktop\\wagon\\composer\\composer.bat"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment