1
0
Fork 0
mirror of synced 2024-05-24 11:10:31 -04:00
ultimate-vim/coc-settings.json

37 lines
767 B
JSON

{
"languageserver": {
"intelephense": {
"command": "intelephense",
"args": [
"--stdio"
],
"filetypes": [
"php"
],
"initializationOptions": {
"storagePath": "/tmp/intelephense"
}
},
"golang": {
"command": "gopls",
"rootPatterns": [
"go.mod"
],
"filetypes": [
"go"
]
}
},
"json.format.enable": true,
"coc.preferences.formatOnSaveFiletypes": [
"json",
"go",
"php",
"ts",
"js",
"html",
"css"
],
"go.goplsPath": "/root/.go/bin/gopls"
}