-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
193 lines (186 loc) · 4.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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"coc.preferences.hoverTarget": "preview",
"coc.preferences.enableFloatHighlight": true,
"coc.preferences.snippets.enable": true,
"coc.preferences.extensionUpdateCheck": "daily",
"coc.preferences.messageLevel": "error",
"coc.source.around.firstMatch": false,
"coc.source.buffer.firstMatch": false,
"coc.source.buffer.enable": false,
"coc.source.around.enable": false,
"codeLens.enable": true,
"suggest.triggerAfterInsertEnter": false,
"suggest.timeout": 500,
"suggest.noselect": false,
"suggest.detailField": "abbr",
"suggest.snippetIndicator": "Ⓢ ",
"suggest.triggerCompletionWait": 100,
"suggest.echodocSupport": true,
"suggest.completionItemKindLabels": {
"keyword": "\uf1de",
"variable": "\ue79b",
"value": "\uf89f",
"operator": "\u03a8",
"function": "\u0192",
"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": "\uf15c",
"folder": "\uf114",
"snippet": "\ue60b",
"typeParameter": "\uf728",
"default": "\uf29c"
},
"diagnostic.signOffset": 9999999,
"diagnostic.errorSign": "●",
"diagnostic.warningSign": "●",
"diagnostic.infoSign": "●",
"diagnostic.displayByAle": false,
"diagnostic.refreshOnInsertMode": false,
"git.enableGutters": true,
"git.branchCharacter": "\uf418",
"git.addGBlameToBufferVar": true,
"git.addGBlameToVirtualText": true,
"git.virtualTextPrefix": " ❯❯❯ ",
"git.addedSign.hlGroup": "GitGutterAdd",
"git.changedSign.hlGroup": "GitGutterChange",
"git.removedSign.hlGroup": "GitGutterDelete",
"git.topRemovedSign.hlGroup": "GitGutterDelete",
"git.changeRemovedSign.hlGroup": "GitGutterChangeDelete",
"git.addedSign.text": "▋",
"git.changedSign.text": "▋",
"git.removedSign.text": "▋",
"git.topRemovedSign.text": "▔",
"git.changeRemovedSign.text": "▋",
"list.source.files.defaultOptions": ["--auto-preview"],
"list.source.outline.defaultOptions": ["--auto-preview"],
"list.nextKeymap": "<C-j>",
"list.previousKeymap": "<C-k>",
"coc.preferences.formatOnSaveFiletypes": [
"html",
"css",
"markdown",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"go",
"json",
"vue",
"vim"
],
"prettier.statusItemText": "ⓟ ",
"prettier.eslintIntegration": true,
"prettier.tslintIntegration": false,
"prettier.stylelintIntegration": true,
"prettier.disableSuccessMessage": true,
"emmet.includeLanguages": {
"vue-html": "html",
"javascript": "javascriptreact",
"typescriptreact": "typescriptreact"
},
"imselect.enableStatusItem": false,
"cursors.nextKey": "<C-n>",
"cursors.previousKey": "<C-p>",
"cursors.cancelKey": "<esc>",
"session.directory": "~/.cache/vim/session",
"eslint.filetypes": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue"
],
"eslint.autoFix": true,
"eslint.autoFixOnSave": true,
"coc-actions.hideCursor": false,
"cSpell.fixSpellingWithRenameProvider": true,
"cSpell.showStatus": false,
"cSpell.enabledLanguageIds": [
"asciidoc",
"c",
"cpp",
"csharp",
"css",
"git-commit",
"gitcommit",
"go",
"haskell",
"html",
"java",
"javascript",
"javascriptreact",
"json",
"jsonc",
"latex",
"less",
"markdown",
"php",
"plaintext",
"python",
"pug",
"restructuredtext",
"rust",
"scala",
"scss",
"text",
"typescript",
"typescriptreact",
"yaml",
"yml",
"vim"
],
"languageserver": {
"bash": {
"command": "bash-language-server",
"args": ["start"],
"ignoredrootpaths": ["~"],
"filetypes": ["sh"]
},
"lua": {
"command": "lua-lsp",
"filetypes": ["lua"]
},
"swift": {
"command": "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/sourcekit-lsp",
"args": [],
"filetypes": ["swift"],
"initializationOptions": {},
"settings": {}
},
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod", ".root", ".project", ".svn", ".git"],
"disableWorkspaceFolders": "true",
"filetypes": ["go"]
},
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
"rootPatterns": [
".ccls",
".ccls-root",
"compile_commands.json",
".git/",
".hg/"
],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
}
}
}
}
}