This repository has been archived by the owner on Sep 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
77 lines (77 loc) · 2.03 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
{
"eslint.enable": true,
"eslint.autoFixOnSave": true,
"coc.preferences.formatOnSaveFiletypes": [
"python",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"json",
"svelte",
"prisma",
"elixir",
"css",
"scss",
"go",
"php",
"rust",
"lua",
"dart"
],
"tsserver.formatOnType": true,
"coc.preferences.formatOnType": true,
"html.autoClosingTags": true,
"html.filetypes": ["html", "handlebars", "htmldjango", "jst", "ejs"],
"explorer.position": "floating",
"explorer.icon.enableNerdfont": true,
"emmet.includeLanguages": { "javascript": "javascriptreact", "blade": "html" },
"coc.preferences.snippetStatusText": "Ⓢ ",
"prettier.tabWidth": 2,
"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.displayByAle": false,
"diagnostic.refreshOnInsertMode": true,
"diagnostic.errorSign": "✘",
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "",
"diagnostic.hintSign": "ஐ",
"diagnostic.checkCurrentLine": true,
"diagnostic.virtualTextPrefix": " ❯❯❯ ",
"diagnostic.virtualText": true,
"diagnostic.enableMessage": "never",
"python.pythonPath": "/usr/lib/python3.10"
}