-
Notifications
You must be signed in to change notification settings - Fork 53
/
coc-settings.json
77 lines (72 loc) · 1.88 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
{
// normal settings
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"html",
"css",
"json",
"markdown",
"typescript",
"python",
"dart"
],
// suggest settings
"suggest.noselect": false,
"suggest.detailField": "abbr",
"suggest.snippetIndicator": "",
"suggest.removeDuplicateItems": true,
"suggest.triggerAfterInsertEnter": true,
"suggest.timeout": 2000,
"suggest.minTriggerInputLength": 1,
"suggest.completionItemKindLabels": {
"function": "\uf794",
"method": "\uf6a6",
"variable": "\uf71b",
"constant": "\uf8ff",
"struct": "\ufb44",
"class": "\uf0e8",
"interface": "\ufa52",
"text": "\ue612",
"enum": "\uf435",
"enumMember": "\uf02b",
"module": "\uf668",
"color": "\ue22b",
"property": "\ufab6",
"field": "\uf93d",
"unit": "\uf475",
"file": "\uf471",
"value": "\uf8a3",
"event": "\ufacd",
"folder": "\uf115",
"keyword": "\uf893",
"snippet": "\uf64d",
"operator": "\uf915",
"reference": "\uf87a",
"typeParameter": "\uf278",
"default": "\uf29c"
},
// diagnostic settings
"diagnostic.displayByAle": false,
"diagnostic.refreshOnInsertMode": true,
"diagnostic.errorSign": "✘",
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "",
"diagnostic.hintSign": "ஐ",
"diagnostic.checkCurrentLine": true,
"diagnostic.virtualTextPrefix": " ❯❯❯ ",
"diagnostic.virtualText": true,
"diagnostic.enableMessage": "never",
// list settings
"list.source.grep.command": "rg",
// git settings
"git.topRemovedSign.text": "▌",
"git.changeRemovedSign.text": "▌",
"git.removedSign.text": "▌",
"git.addedSign.text": "▌",
"git.changedSign.text": "▌",
// other language specific settings
"html.autoClosingTags": true,
"prettier.proseWrap": "always",
"python.formatting.provider": "black",
"sh.enable": true
}