-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcoc-settings.json
81 lines (75 loc) · 2.04 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
76
77
78
79
80
81
{
"coc.preferences.formatOnSave": true,
"coc.preferences.formatOnSaveTimeout": 200,
"notification.statusLineProgress": false,
"typescript.preferences.importModuleSpecifier": "shortest",
"typescript.updateImportsOnFileMove.enabled": "always",
"git.addGBlameToVirtualText": true,
"git.showCommitInFloating": true,
"git.addedSign.text": "║",
"git.addedSign.hlGroup": "GitSignsAdd",
"git.removedSign.text": "║",
"git.removedSign.hlGroup": "GitSignsDelete",
"git.changedSign.text": "║",
"git.changedSign.hlGroup": "GitSignsChange",
"git.changeRemovedSign.text": "║",
"git.changeRemovedSign.hlGroup": "GitSignsChange",
"coc.preferences.extensionUpdateCheck": "daily",
"rust-analyzer.lens.enable": false,
"languageserver": {
"rust": {
"command": "rust-analyzer",
"filetypes": ["rust"],
"rootPatterns": ["Cargo.toml"]
}
},
"Lua.diagnostics.globals": ["vim"],
"Lua.runtime.version": "Lua 5.1",
"tailwindCSS.headwind.runOnSave": false,
"colors.enable": true,
"diagnostic.virtualText": true,
"diagnostic.virtualTextCurrentLineOnly": false,
"codeLens.enable": true,
"floatFactory.floatConfig": {
"rounded": true,
"border": true,
"borderhighlight": "FloatBorder",
"maxWidth": 50
},
"suggest.floatConfig": {
"rounded": true,
"border": true,
"borderhighlight": "FloatBorder",
"maxWidth": 50
},
"suggest.maxCompleteItemCount": 10,
"suggest.labelMaxLength": 100,
"suggest.completionItemKindLabels": {
"keyword": "",
"variable": "",
"value": "",
"operator": "Ψ",
"constructor": "",
"function": "ƒ",
"reference": "渚",
"constant": "",
"method": "",
"struct": "פּ",
"class": "פּ",
"interface": "",
"text": "",
"enum": "",
"enumMember": "",
"module": "",
"color": "",
"property": "",
"field": "料",
"unit": "",
"event": "鬒",
"file": "",
"folder": "",
"snippet": "",
"typeParameter": "",
"default": ""
}
}