-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcoc-settings.json
67 lines (67 loc) · 1.61 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
{
"snippets.ultisnips.pythonPrompt": false,
"git.addGBlameToVirtualText": true,
"inlayHint.enable": false,
"python.pythonPath": "python3",
"callHierarchy.splitCommand": "botright 60vs",
"explorer.icon.enableNerdfont": true,
"clangd.arguments": [
"-j=24"
],
"explorer.root.strategies": [
"cwd",
"workspace",
"sourceBuffer",
"reveal"
],
"explorer.mouseMode": "singleclick",
"explorer.file.root.template": "[icon] [title] [git & 1][hidden & 1][root]",
"explorer.buffer.child.template": "[git | 2] [selection | 1] [bufnr] [name][modified][readonly]",
"explorer.quitOnOpen": true,
"explorer.position": "right",
"explorer.keyMappings.global": {
"<esc>": "quit",
"<C-c>": "quit"
},
"explorer.sources": [
{
"name": "bookmark",
"expand": false
},
{
"name": "buffer",
"expand": true
},
{
"name": "file",
"expand": true
}
],
"Lua.diagnostics.globals": [
"vim"
],
"languageserver": {
"proto": {
"command": "protobuf-language-server",
"filetypes": [
"proto",
"cpp"
]
},
"bash": {
"command": "bash-language-server",
"args": [
"start"
],
"filetypes": [
"sh"
]
},
"Bazel": {
"command": "starpls",
"filetypes": [
"bzl"
]
}
}
}