This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
105 lines (105 loc) · 2.74 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"coc.preferences.extensionUpdateCheck": "daily",
"languageserver": {
/*
"clangd": {
"command": "clangd",
"rootPatterns": ["compile_flags.txt", "compile_commands.json"],
"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"]
},
"cquery": {
"command": "cquery",
"args": ["--log-file=/tmp/cq.log"],
"filetypes": ["c", "cc", "cpp", "c++"],
"rootPatterns": ["compile_flags.txt", "compile_commands.json", ".git/", ".hg/"],
"initializationOptions": {
"cacheDirectory": "/tmp/cquery"
}
},
// npm i -g bash-language-server or pacman -S bash-language-server
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
// pip install cmake-language-server --user
"cmake": {
"command": "cmake-language-server",
"filetypes": ["cmake"],
"rootPatterns": [
"build/"
],
"initializationOptions": {
"buildDirectory": "build"
}
},
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
"rootPatterns": [".ccls",".ccls-root", "compile_commands.json", ".git/", ".hg/"],
"initializationOptions": {
"cache": {
"directory": ".ccls-cache"
},
"client": {
"snippetSupport": true
}
}
}
},
"suggest.completionItemKindLabels": {
"class": "",
"color": "",
"constant": "",
"default": "",
"enum": "",
"enumMember": "",
"event": "鬒",
"field": "綠",
"file": "",
"folder": "",
"function": "ƒ",
"interface": "",
"keyword": "",
"method": "",
"module": "",
"operator": "洛",
"property": "",
"reference": "渚",
"snippet": "",
"struct": "פּ",
"text": "",
"typeParameter": "",
"unit": "",
"value": "",
"variable": ""
},
"codeLens.enable": true,
"codeLens.position": "eol",
"suggest.enablePreselect": true,
"pylsp.plugins.pycodestyle.maxLineLength": 90,
"explorer.width": 36,
"explorer.previewAction.onHover": "labeling",
"explorer.git.showIgnored": true,
"git.enableGlobalStatus": false,
"git.enableGutters": true,
"git.addGBlameToBufferVar": false,
"git.addedSign.text": "",
"git.changedSign.text": "",
"git.removedSign.text": "",
"git.topRemovedSign.text": "",
"git.changeRemovedSign.text": "",
"git.branchCharacter": "",
"explorer.icon.expanded": " ",
"explorer.icon.collapsed": " ",
"explorer.icon.selected": "",
"explorer.git.icon.status.added": "",
"explorer.git.icon.status.modified": "",
"explorer.git.icon.status.deleted": "",
"explorer.git.icon.status.renamed": "",
"explorer.git.icon.status.ignored": "",
"explorer.git.icon.status.unmerged": "◦",
"explorer.git.icon.status.untracked": "",
"explorer.icon.enableNerdfont": true
}