-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
67 lines (67 loc) · 2.19 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
{
"coc.preferences.formatOnSave": true,
"coc.preferences.jumpCommand": "tabe",
"coc.preferences.willSaveHandlerTimeout": 5000,
"coc.source.emoji.filetypes": null,
"diagnostic.errorSign": "",
"diagnostic.warningSign": "",
"diagnostic.infoSign": "",
"diagnostic.hintSign": "",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"eruby": "html"
},
"emmet.showSuggestionsAsSnippets": true,
"eslint.run": "onType",
"explorer.file.reveal.auto": false,
"explorer.file.child.template": "[git | 2][selection | clip | 1][indent][icon | 1] [diagnosticError & 1][filename omitCenter 1] [readonly & 1][linkIcon & 1][link]",
"explorer.file.root.template": "[icon] [fullpath]",
"explorer.file.showHiddenFiles": true,
"explorer.filename.colored.enable": {
"diagnosticError": true,
"diagnosticWarning": false,
"git": false
},
"explorer.git.showIgnored": false,
"explorer.icon.enableNerdfont": true,
"explorer.keyMappings.global": {
"<2-LeftMouse>": "null",
"<Leader>e": "reveal:select",
"l": "null",
"E": "null",
"v": "open:vsplit"
},
"explorer.openAction.relativePath": true,
"explorer.openAction.strategy": "sourceWindow",
"explorer.previewAction.onHover": false,
"explorer.quitOnOpen": true,
"explorer.sources": [
{
"name": "file",
"expand": true
}
],
"git.addedSign.hlGroup": "CocGitAdd",
"git.changedSign.hlGroup": "CocGitChange",
"git.removedSign.hlGroup": "CocGitDelete",
"git.topRemovedSign.hlGroup": "CocGitDelete",
"git.changeRemovedSign.hlGroup": "CocGitDeleteChange",
"git.changedSign.text": "!",
"javascript.suggestionActions.enabled": false,
"prettier.arrowParens": "avoid",
"prettier.endOfLine": "auto",
"prettier.printWidth": 80,
"prettier.singleQuote": true,
"prettier.trailingComma": "none",
"snippets.extends": {
"typescriptreact": ["javascript"],
"typescript": ["javascript"]
},
"solargraph.diagnostics": true,
"solargraph.formatting": true,
"suggest.snippetIndicator": " ",
"suggest.maxCompleteItemCount": 500,
"suggest.noselect": true,
"vetur.validation.template": false,
"workspace.rootPatterns": ["package.json", ".gitignore", ".env", ".git"]
}