-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathcoc-settings.json
132 lines (121 loc) · 3.75 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
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
{
"rust-analyzer.lruCapacity": 100,
"rust-analyzer.cachePriming.enable": false,
"rust-analyzer.featureFlags": {
"lsp.diagnostics": false
},
"rust-analyzer.serverPath": "/home/xlc/Data1/github.com/ra-multiplex/target/release/ra-multiplex",
"rust-analyzer.checkOnSave": false,
"rust-analyzer.numThreads": 8,
"rust-analyzer.inlayHints.enable": false,
"rust-analyzer.inlayHints.chainingHints": false,
"rust-analyzer.inlayHints.parameterHints.enable": false,
"rust-analyzer.inlayHints.typeHints.enable": false,
"rust-analyzer.cargo.loadOutDirsFromCheck": true,
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.lens.enable": false,
"git.addGBlameToBufferVar": true,
"git.addGBlameToVirtualText": true,
"git.addedSign.hlGroup": "GitGutterAdd",
"git.changedSign.hlGroup": "GitGutterChange",
"git.removedSign.hlGroup": "GitGutterDelete",
"git.topRemovedSign.hlGroup": "GitGutterDelete",
"git.changeRemovedSign.hlGroup": "GitGutterChangeDelete",
"coc.preferences.formatOnSaveFiletypes": ["css", "markdown", "javascript", "typescript"],
"rust-analyzer.inlayHints.chainingHints": false,
"codeLens.enable": true,
"explorer.file.child.labelingTemplate": "[fullpath][link][git][size][timeAccessed][timeModified][timeCreated][readonly][modified]",
"explorer.width": 25,
"explorer.file.showHiddenFiles": true,
"explorer.previewAction.onHover": false,
"explorer.icon.enableNerdfont": true,
"explorer.keyMappings.global": {
"k": "nodePrev",
"j": "nodeNext",
"*": "toggleSelection",
"<tab>": "actionMenu",
"h": "collapse",
"l": "expand",
"J": ["toggleSelection", "normal:j"],
"K": ["toggleSelection", "normal:k"],
"gl": "expandRecursive",
"gh": "collapseRecursive",
"o": ["expanded?", "collapse", "expand"],
"<cr>": "open",
"e": "open",
"E": "openInVsplit",
"t": "openInTab",
"<bs>": "gotoParent",
"y": "copyFilepath",
"Y": "copyFilename",
"c": "copyFile",
"x": "cutFile",
"p": "pasteFile",
"d": "delete",
"D": "deleteForever",
"a": "addFile",
"A": "addDirectory",
"r": "rename",
".": "toggleHidden",
"R": "refresh",
"?": "help",
"q": "quit",
"X": "systemExecute",
"gd": "listDrive",
"f": "search",
"F": "searchRecursive",
"gf": "gotoSource:file",
"gb": "gotoSource:buffer",
"[[": "sourcePrev",
"]]": "sourceNext",
"[d": "diagnosticPrev",
"]d": "diagnosticNext",
"[c": "gitPrev",
"]c": "gitNext",
"<<": "gitStage",
">>": "gitUnstage"
},
"diagnostic.enable": false,
"diagnostic.displayByAle": true,
"suggest.minTriggerInputLength": 2,
"languageserver":{
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod", ".git/"],
"filetypes": ["go"]
}
},
"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"
},
"list.insertMappings": {
"<C-c>": "do:exit"
},
"list.normalMappings": {
"<C-c>": "do:exit"
}
}