-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcoc-settings.json
75 lines (64 loc) · 2.17 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"coc.preferences.willSaveHandlerTimeout": 1000,
"diagnostic.displayByAle": true,
"diagnostic.hintSign": "",
"diagnostic.infoSign": "⚑",
"diagnostic.warningSign": "",
"diagnostic.errorSign": "✖",
"diagnostic.floatConfig": {
"border": true,
"borderhighlight": "FloatBorder",
"focusable": true,
"rounded": true,
"title": " ᴄᴏᴄ.ɴᴠɪᴍ :: ᴅɪᴀɢɴᴏsᴛɪᴄ"
},
"dialog.floatBorderHighlight": "FloatBorder",
"inlayHint.display": true,
"inlayHint.enable": true,
"inlayHint.position": "eol",
"hover.floatConfig": {
"border": true,
"borderhighlight": "FloatBorder",
"focusable": true,
"rounded": true,
"title": " ᴄᴏᴄ.ɴᴠɪᴍ :: ʜᴏᴠᴇʀ"
},
"signature.floatConfig": {
"border": true,
"borderhighlight": "FloatBorder",
"focusable": true,
"rounded": true,
"title": " ᴄᴏᴄ.ɴᴠɪᴍ :: sɪɢɴᴀᴛᴜʀᴇ"
},
"snippets.ultisnips.pythonPrompt": false,
"suggest.floatConfig": {
"border": true,
"borderhighlight": "FloatBorder",
"rounded": true
},
"suggest.noselect": true,
"eslint.quiet": true,
"eslint.alwaysShowStatus": true,
"json.format.enable": false,
"json.schemas": [
{
"fileMatch": ["tsconfig.*.json"],
"url": "https://json.schemastore.org/tsconfig.json"
}
],
"javascript.autoClosingTags": false,
"javascript.preferGoToSourceDefinition": true,
"typescript.autoClosingTags": false,
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.preferGoToSourceDefinition": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"tsserver.disableAutomaticTypeAcquisition": true,
// coc-tsserver still uses old version of typescript, so use local one instead
"tsserver.useLocalTsdk": true
}