-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoc-settings.json
executable file
·54 lines (54 loc) · 1.34 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
47
48
49
50
51
52
53
54
{
"intelephense.maxMemory": 1024,
"intelephense.enable": true,
"intelephense.progress.enable": true,
"intelephense.diagnostics.enable": true,
"intelephense.completion.maxItems": 100,
"intelephense.completion.insertUseDeclaration": true,
"intelephense.trace.server": "verbose",
"intelephense.files.associations": [
"*.php",
"*.phtml"
],
"intelephense.format.enable": true,
"psalm.trace.server": "messages",
"psalm.enable": false,
"psalm.configPaths": [
"~/.vim/psalm.xml",
"psalm.xml",
"psalm.xml.dist"
],
"psalm.phpExecutablePath": "~/.vim/vendor/bin/psalm-language-server",
"coc.preferences.jumpCommand": "tabe",
"sh.enable": true,
"json.enable": true,
"tsserver.enable": true,
"snippets.snipmate.enable": true,
"snippets.snipmate.author": "vallabhdas kansagara",
"snippets.ultisnips.directories": [
"~/.vim/src/UltiSnips"
],
"snippets.userSnippetsDirectory": "~/.vim/src/UltiSnips",
"snippets.extends": {
"php": [
"phtml",
"php"
],
"cpp": [
"c",
"h",
"cpp"
],
"javascriptreact": [
"javascript"
],
"typescript": [
"javascript",
"js",
"ts"
]
},
"clangd.enabled": true,
"tsserver.trace.server": "verbose",
"clangd.path": "~/.config/coc/extensions/coc-clangd-data/install/13.0.0/clangd_13.0.0/bin/clangd"
}