-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
162 lines (149 loc) · 4.48 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"coc.preferences.snippetStatusText": "Ⓢ ",
"suggest.triggerAfterInsertEnter": true,
"suggest.snippetIndicator": "",
"suggest.echodocSupport": true,
"suggest.enablePreselect": true,
"suggest.completionItemKindLabels": {
"keyword": "\uf1de",
"variable": "\ue79b",
"value": "\uf89f",
"operator": "\u03a8",
"constructor": "\uf0ad",
"function": "\uf794",
"reference": "\ufa46",
"constant": "\uf8fe",
"method": "\uf09a",
"struct": "\ufb44",
"class": "\uf0e8",
"interface": "\uf417",
"text": "\ue612",
"enum": "\uf435",
"enumMember": "\uf02b",
"module": "\uf40d",
"color": "\ue22b",
"property": "\ue624",
"field": "\uf9be",
"unit": "\uf475",
"event": "\ufacd",
"file": "\uf723",
"folder": "\uf114",
"snippet": "\ue60b",
"typeParameter": "\uf728",
"default": "\uf29c"
},
"signature.hideOnTextChange": true,
"clangd.checkUpdates": false,
"yaml.format.enable": true,
"snippets.ultisnips.directories": [
"~/.config/nvim/snippets/"
],
"xml.java.home": "/usr/lib/jvm/default",
"yank.highlight.duration": 100,
"yank.enableCompletion": true,
"explorer.previewAction.onHover": false,
"explorer.keyMappingMode": "none",
"explorer.openAction.strategy": "split",
"explorer.file.column.indent.indentLine": true,
"explorer.file.showHiddenFiles": false,
"explorer.icon.enableNerdfont": true,
"explorer.git.showIgnored": true,
"explorer.keyMappings.global": {
"<space>": "toggleSelection",
"m": "actionMenu",
"j": ["wait", "nodeNext"],
"k": ["wait", "nodePrev"],
"h": ["wait", "gotoParent"],
"l": ["wait", "cd"],
"i": ["expandable?", ["expanded?", "collapse", "expand"], "open"],
"gh": ["wait", "expand:recursive"],
"gl": ["wait", "collapse:recursive"],
"gk": ["wait", "expandablePrev"],
"gj": ["wait", "expandableNext"],
"s": "open:split",
"v": "open:vsplit",
"t": "open:tab",
"yp": "copyFilepath",
"yn": "copyFilename",
"yf": "copyFile",
"c": "cutFile",
"p": "pasteFile",
"d": "delete",
"D": "deleteForever",
"af": "addFile",
"ad": "addDirectory",
"r": "rename",
"H": "toggleHidden",
"R": "refresh",
"?": "help",
"q": "quit",
"<esc>": "esc",
"x": "systemExecute",
"gd": "listDrive",
"f": "search",
"F": "searchRecursive",
"gf": "gotoSource:file",
"gb": "gotoSource:buffer",
"[[": ["wait", "sourcePrev"],
"]]": ["wait", "sourceNext"],
"[i": ["wait", "indentPrev"],
"]i": ["wait", "indentNext"],
"[m": ["wait", "markPrev:modified"],
"]m": ["wait", "markNext:modified"],
"[d": ["wait", "markPrev:diagnosticError:diagnosticWarning"],
"]d": ["wait", "markNext:diagnosticError:diagnosticWarning"],
"[D": ["wait", "markPrev:diagnosticError"],
"]D": ["wait", "markNext:diagnosticError"],
"[c": ["wait", "markPrev:git"],
"]c": ["wait", "markNext:git"],
"<<": "gitStage",
">>": "gitUnstage"
},
"diagnostic-languageserver.filetypes": {
"python": "pylint"
},
"diagnostic-languageserver.linters": {
"pylint": {
"sourceName": "pylint",
"command": "pylint",
"args": [
"--output-format",
"text",
"--score",
"no",
"--msg-template",
"'{line}:{column}:{category}:{msg} ({msg_id}:{symbol})'",
"%file"
],
"formatPattern": [
"^(\\d+?):(\\d+?):([a-z]+?):(.*)$",
{
"line": 1,
"column": 2,
"security": 3,
"message": 4
}
],
"rootPatterns": [".git", "pyproject.toml", "setup.py"],
"securities": {
"informational": "hint",
"refactor": "info",
"convention": "info",
"warning": "warning",
"error": "error",
"fatal": "error"
},
"offsetColumn": 1,
"formatLines": 1
}
},
"diagnostic-languageserver.formatFiletypes": {
"python": ["autopep8"]
},
"diagnostic-languageserver.formatters": {
"autopep8": {
"command": "autopep8",
"args": ["-"]
}
}
}