-
Notifications
You must be signed in to change notification settings - Fork 1
/
coc-settings.json
67 lines (66 loc) · 1.79 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
{
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "objc", "objcpp"],
"rootPatterns": [".ccls", "compile_commands.json", ".vim/", ".git/", ".hg/"],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
},
//"clang": {
// "resourceDir": "/Library/Developer/CommandLineTools/usr/lib/clang/10.0.1",
// "extraArgs": [
// "-isystem",
// "/usr/local/opt/llvm/include/c++/v1/",
// ]
//},
}
},
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"]
},
"lua": {
"command": "~/.luarocks/bin/lua-lsp",
"filetypes": ["lua"]
}
//"clangd": {
// "command": "/usr/local/opt/llvm/bin/clangd",
// "rootPatterns": ["compile_flags.txt", "compile_commands.json", ".vim/", ".git/", ".hg/"],
// "filetypes": ["c", "cpp", "objc", "objcpp"]
//}
},
// https://github.com/voldikss/dotfiles/blob/master/vim/coc-settings.json
// :h coc-
"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": ""
},
//"suggest.numberSelect": true
"explorer.icon.enableNerdfont": true
}