-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
91 lines (88 loc) · 2.38 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
87
88
89
90
91
{
// vetur for vue helper
// "vetur.dev.vlsPath": "/home/deve/.config/nvm/14.15.0/lib/node_modules/vls",
// explorer config
"explorer.icon.expanded": "▾",
"explorer.icon.collapsed": "▸",
/* "explorer.width": 80, */
"explorer.icon.enableNerdfont": true,
"explorer.quitOnOpen": true,
"explorer.floating.width": -20,
"explorer.floating.height": -10,
"explorer.openAction.strategy": "sourceWindow",
"explorer.file.showHiddenFiles": true,
//diagnostic
"diagnostic.errorSign": "●",
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "●",
"diagnostic.displayByAle": false,
"diagnostic.refreshOnInsertMode": true,
"diagnostic.checkCurrentLine": false,
//git
"git.enableGutters": true,
"git.branchCharacter": "\uf418",
"git.addGBlameToBufferVar": false,
"git.addGBlameToVirtualText": false,
"git.virtualTextPrefix": " ❯❯❯ ",
"git.addedSign.hlGroup": "GitGutterAdd",
"git.changedSign.hlGroup": "GitGutterChange",
"git.removedSign.hlGroup": "GitGutterDelete",
"git.topRemovedSign.hlGroup": "GitGutterDelete",
"git.changeRemovedSign.hlGroup": "GitGutterChangeDelete",
"git.addedSign.text": "▋",
"git.changedSign.text": "▋",
"git.removedSign.text": "▋",
"git.topRemovedSign.text": "▔",
"git.changeRemovedSign.text": "▋",
// pretier
"coc.preferences.formatOnSaveFiletypes": [
"php",
"markdown",
"dart",
"json",
"xml",
"js"
],
// snipshet
"snippets.loadFromExtensions": true,
"coc.preferences.snippetStatusText": "Ⓢ ",
"suggest.completionItemKindLabels": {
"keyword": "",
"variable": "",
"value": "",
"operator": "Ψ",
"function": "⨕",
"reference": "渚",
"constant": "",
"method": "",
"struct": "פּ",
"class": "",
"interface": "",
"text": "♣",
"enum": "",
"enumMember": "",
"module": "",
"color": "",
"property": "",
"field": "",
"unit": "",
"event": "鬒",
"file": "",
"folder": "",
"snippet": "",
"typeParameter": "",
"default": ""
},
// emmet
"emmet.includeLanguages": {
"blade": "html",
"vue-html": "html",
"javascript": "javascriptreact"
},
// flutter
"flutter.runDevToolsAtStartup": true,
"flutter.autoOpenDevLog": true,
"flutter.openDevLogSplitCommand": "30vnew",
// translator
"translator.toLang": "en|id"
}