// php executable path
"phpfmt.php_bin": "C:/Users/使用者名稱/xampp/php/php.exe",
// enable auto align of ST_EQUAL and T_DOUBLE_ARROW
"phpfmt.enable_auto_align": true,
// fixes visibiliy order for method in classes - PSR-2 4.2
"phpfmt.visibility_order": true,
// convert multistatement blocks into multiline blocks
"phpfmt.smart_linebreak_after_curly": true,
// Enable per-language
"[php]": {
"editor.formatOnSave": true
},
vscode-goto-documentation:快速檔案搜尋
AutoFileName : 讓編輯器自動完成圖片或檔案路徑。
Auto Rename Tag : 讓成對的標籤自動一起修改。
Auto Close Tag : 讓標籤自動閉合的。
Bootstrap 4, Font awesome 4, Font Awesome 5 Free & Pro snippets : 插入Bootstrap 4 或 Font awesome 語法片段。
DotENV:讓.env檔也可以套用高亮度設定
Beautify:美化CSS
"beautify.language": {
"js": {
"type": [
"javascript",
"json"
],
"filename": [
".jshintrc",
".jsbeautifyrc"
]
// "ext": ["js", "json"]
// ^^ to set extensions to be beautified using the javascript beautifier
},
"css": [
"css",
"scss"
],
"html": [
"htm",
"html",
"blade.php"
]
// ^^ providing just an array sets the VS Code file type
},
Git History:可觀看所有的Git提交紀錄
indent-rainbow:以顏色標出縮排
Laravel Blade Snippets:Laravel 樣板的快速語法
// enable tab to expanse emmet tags
"emmet.triggerExpansionOnTab": true,
// if you would like to enable blade format
"blade.format.enable": true,
Laravel 5 Snippets:Laravel 快速語法(作者為 Winnie Lin 的那個)