### 安裝php語法支持擴展
CocInstall coc-phpls
CocInstall marketplace
### 搜索插件市場
:CocList marketplace
### 函數跳轉配置
nmap <silent> gd <Plug>(coc-definition)
nmap <silent> gy <Plug>(coc-type-definition)
nmap <silent> gi <Plug>(coc-implementation)
nmap <silent> gr <Plug>(coc-references)
回車補全
inoremap <silent><expr> <CR> coc#pum#visible() ? coc#pum#confirm() : "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"
### coc.vim 的配置項 .config/nvim/coc-settings.json
{
// 保存的時候自動格式化
"coc.preferences.formatOnSaveFiletypes": [
"php",
"javascript",
"html"
],
// 對齊 json中不能寫注釋
"phpfmt.enable_auto_align":true
}