-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
86 lines (83 loc) · 2.13 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
82
83
84
85
86
{
// prettier stuff
"coc.preferences.formatOnSaveFiletypes": [
"html",
"css",
"javascript",
"json"
],
"suggest.echodocSupport": true,
"diagnostic.virtualText": true, // this won't work with codelens when error on same line
// show symbols in intellisence popup
"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"
},
// use nerd font for the explorer
"explorer.icon.enableNerdfont": true,
"emmet.includeLanguages": { "javascript": "javascriptreact" },
//Custom Icons (These are my personal preferences)
"explorer.icon.customIcons": {
"icons": {
"folderClosed": {
"code": " ",
"color": "#00afaf"
},
"folderOpened": {
"code": "",
"color": "#00afaf"
},
"css": {
"code": "",
"color": "#42A5F5"
},
"javascript": {
"code": "",
"color": "#FFCA28"
},
"html": {
"code": "",
"color": "#E44D26"
}
},
"extensions": {},
"filenames": {},
"dirnames": {},
"patternMatches": {},
"dirPatternMatches": {}
},
"explorer.width": 30,
"explorer.previewAction.onHover": false,
"explorer.keyMappings": {
"<cr>": ["expandable?", "expand", "open"],
"v": "open:vsplit"
},
//I don't need this because I have colorizer
"highlight.colors.enable": false,
"clangd.path": "/home/donofdestroy/.config/coc/extensions/coc-clangd-data/install/10.0.0/clangd_10.0.0/bin/clangd",
"coc.preferences.extensionUpdateCheck": "daily"
// "suggest.floatEnable": false
}