-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcoc-settings.json
More file actions
executable file
·150 lines (150 loc) · 4.53 KB
/
Copy pathcoc-settings.json
File metadata and controls
executable file
·150 lines (150 loc) · 4.53 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"explorer.width": 38,
"explorer.icon.enableNerdfont": true,
"explorer.file.column.indent.indentLine": true,
"explorer.file.showHiddenFiles": true,
"explorer.file.column.git.showIgnored": true,
//"coc.preferences.hoverTarget": "preview",
"coc.preferences.snippetStatusText": "Ⓢ ",
"coc.preferences.enableFloatHighlight": true,
"coc.preferences.extensionUpdateCheck": "daily",
"coc.source.around.firstMatch": false,
"coc.source.buffer.firstMatch": false,
"coc.source.syntax.firstMatch": false,
"coc.preferences.messageLevel": "error",
"coc-actions.hideCursor": false,
"coc-actions.showActionKind": true,
"suggest.detailMaxLength": 60,
"suggest.enablePreselect": false,
"suggest.triggerAfterInsertEnter": false,
"suggest.timeout": 5000,
"suggest.enablePreview": true,
"suggest.floatEnable": true,
"suggest.detailField": "preview",
"suggest.triggerCompletionWait": 100,
"suggest.echodocSupport": true,
"suggest.noselect": true,
"suggest.minTriggerInputLength": 1,
"suggest.snippetIndicator": "🧊",
"suggest.disableMenuShortcut": false,
"snippets.shortcut": "",
"diagnostic.signOffset": 1,
"diagnostic.refreshAfterSave": false,
"diagnostic.checkCurrentLine": true,
"diagnostic.virtualText": false,
"diagnostic.displayByAle": false,
"diagnostic.refreshOnInsertMode": false,
"diagnostic.virtualTextPrefix": " ❯❯❯ ",
"list.previewHighlightGroup": "Statement",
"codeLens.enable": true,
"importCost.bundleSizeDecoration": "both",
"importCost.typescriptExtensions": ["\\.tsx?$"],
"importCost.javascriptExtensions": ["\\.jsx?$"],
"importCost.showCalculatingDecoration": true,
"importCost.debug": false,
//"leetcode.language": "javascript",
//"leetcode.enabled": true,
"git.showCommitInFloating": true,
"git.enableGutters": true,
"git.branchCharacter": "\uf418",
"git.addGBlameToBufferVar": true,
"git.addGBlameToVirtualText": true,
"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": "-",
"git.changedDecorator": "➜",
"git.conflictedDecorator": "@",
"git.stagedDecorator": "$",
"git.untrackedDecorator": ">",
"coc.preferences.colorSupport": true,
//"highlight.colors.enable": true,
//"highlight.document.enable": true,
//"highlight.colorNames.enable": false,
"diagnostic.enableSign": true,
"diagnostic.warningSign": "",
"diagnostic.errorSign": "",
"diagnostic.hintSign": "",
"diagnostic.infoSign": "",
"coc.source.file.shortcut": "",
"coc.source.db.shortcut": "",
"coc.source.around.shortcut": "",
"coc.source.buffer.shortcut": "",
"coc.source.issues.shortcut": "",
"signature.target": "float",
"yank.enableCompletion": false,
"typescript.suggestionActions.enabled": true,
"typescript.format.enabled": true,
"html.format.enable": true,
"yaml.format.enable": true,
"suggest.completionItemKindLabels": {
"class": "\uf0e8",
"color": "\ue22b",
"constant": "\uf8fe",
"default": "\uf29c",
"enum": "\uf435",
"enumMember": "\uf02b",
"event": "\ufacd",
"field": "\uf93d",
"file": "\uf723",
"folder": "\uf115",
"function": "\u0192",
"interface": "\uf417",
"keyword": "\uf1de",
"method": "\uf6a6",
"module": "\uf40d",
"operator": "\uf915",
"property": "\ue624",
"reference": "\ufa46",
"snippet": "\ue60b",
"struct": "\ufb44",
"text": "\ue612",
"typeParameter": "\uf728",
"unit": "\uf475",
"value": "\uf89f",
"variable": "\ue71b"
},
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"css",
"json",
"jsonc",
"java",
"python",
"vue",
"svelte",
"c",
"cpp",
"cs",
"racket",
"prisma",
"dart",
"terraform"
],
"languageserver": {
"clangd": {
"command": "clangd",
"rootPatterns": ["compile_flags.txt", "compile_commands.json"],
"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"]
},
"cmake": {
"command": "cmake-language-server",
"filetypes": ["cmake"],
"rootPatterns": ["build/"],
"initializationOptions": {
"buildDirectory": "build"
}
}
}
}