-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoc-settings.json
More file actions
70 lines (53 loc) · 1.88 KB
/
coc-settings.json
File metadata and controls
70 lines (53 loc) · 1.88 KB
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
{
"suggest.triggerAfterInsertEnter": true,
"suggest.noselect": false,
"tsserver.log": "normal",
"suggest.autoTrigger": "always",
"suggest.minTriggerInputLength": 3,
"suggest.acceptSuggestionOnCommitCharacter": true,
"suggest.timeout": 500,
"tsserver.maxTsServerMemory": 6144,
"diagnostic.infoSign": "I",
"diagnostic.warningSign": "W",
"diagnostic.errorSign": "E",
"diagnostic.virtualText": true,
"diagnostic.virtualTextPrefix": " × ",
"diagnostic.virtualTextCurrentLineOnly": false,
"coc.preferences.promptInput": false,
"coc.preferences.useQuickfixForLocations": true,
"tsserver.useLocalTsdk": true,
"typescript.preferences.autoImportFileExcludePatterns": ["./index"],
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"typescript.preferences.quoteStyle": "single",
"javascript.preferences.quoteStyle": "single",
"typescript.format.semicolons": "remove",
"javascript.format.semicolons": "remove",
"typescript.suggest.completeFunctionCalls": false,
"javascript.suggest.completeFunctionCalls": false,
"html.autoClosingTags": false,
"typescript.autoClosingTags": false,
"javascript.autoClosingTags": false,
"typescript.suggest.includeCompletionsWithSnippetText": false,
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "objc", "objcpp"],
"rootPatterns": [".ccls", "compile_commands.json", ".git/", ".svn/"]
}
},
"inlayHint.display": true,
"inlayHint.enable": true,
"inlayHint.enableParameter": true,
"javascript.suggestionActions.enabled": false,
"suggest.labelMaxLength": 25,
"floatFactory.floatConfig": { "border": true },
"hover.floatConfig": {
"border": true,
"winblend": 0,
"focusable": false
},
"suggest.floatConfig": {
"border": true
}
}