-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
46 lines (46 loc) · 1.18 KB
/
coc-settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"suggest.triggerAfterInsertEnter": false,
"suggest.timeout": 8000,
"suggest.enablePreview": true,
"suggest.detailField": "preview",
"suggest.autoTrigger": "always",
"typescript.referencesCodeLens.enable": true,
"typescript.suggest.includeAutomaticOptionalChainCompletions": true,
"typescript.suggest.enabled": true,
"typescript.suggest.completeFunctionCalls": true,
"coc.preferences.useQuickfixForLocations": false,
"eslint.autoFixOnSave": true,
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"typescript",
"yaml.docker-compose",
"javascriptreact",
"typescriptreact",
"json",
"css",
"graphql",
"typescript.tsx",
"php",
"markdown"
],
"languageserver": {
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"]
},
"graphql": {
"command": "graphql-lsp",
"args": ["server", "-m", "stream"],
"filetypes": ["graphql"]
},
"intelephense": {
"command": "intelephense",
"args": ["--stdio"],
"filetypes": ["php"],
"initializationOptions": {
"storagePath": "/tmp/intelephense"
}
}
}
}