-
Notifications
You must be signed in to change notification settings - Fork 35
/
coc-settings.json
69 lines (69 loc) · 2.57 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
{
"hover.floatConfig": { "border": true, "rounded": true, "focusable": true },
"suggest.floatConfig": { "border": true, "rounded": true },
"diagnostic.floatConfig": { "border": true, "rounded": true },
"signature.floatConfig": { "border": true, "rounded": true },
"list.autoPreview": true,
"outline.autoPreview": true,
"git.floatConfig": { "border": true, "rounded": true },
"notification.disabledProgressSources": ["*"],
"diagnostic.signOffset": 1,
"diagnostic.errorSign": "┃",
"diagnostic.warningSign": "┃",
"diagnostic.infoSign": "┃",
"diagnostic.hintSign": "┃",
"inlayHint.enable": false,
"list.alignColumns": true,
"list.floatPreview": true,
"snippets.userSnippetsDirectory": "~/.config/nvim/snippets",
"snippets.ultisnips.directories": ["~/.config/nvim/snippets/ultisnips"],
"snippets.extends.javascript": ["typescript"],
"tabnine.priority": 80,
"pairs.enableCharacters": ["(", "[", "{", "'", "\"", "`"],
"pairs.enableBackspace": true,
"translator.engines": ["youdao", "google"],
"tsserver.trace.server": "messages",
"tsserver.enableJavascript": true,
"tsserver.enable": true,
"volar.takeOverMode.enabled": true,
"volar.autoCreateQuotes": true,
"pyright.inlayHints.enable": false,
"git.addedSign.hlGroup": "GitGutterAdd",
"git.changedSign.hlGroup": "GitGutterChange",
"git.removedSign.hlGroup": "GitGutterDelete",
"git.topRemovedSign.hlGroup": "GitGutterDelete",
"git.changeRemovedSign.hlGroup": "GitGutterDelete",
"git.changedSign.text": "┃",
"git.addedSign.text": "┃",
"git.removedSign.text": "▁",
"git.topRemovedSign.text": "▔",
"git.changeRemovedSign.text": "≃",
"git.branchCharacter": "",
"git.showCommitInFloating": true,
"git.addGBlameToVirtualText": false,
"git.addGBlameToBufferVar": true,
"git.splitWindowCommand": "below 10sp",
"java.clean.workspace": true,
"java.configuration.runtimes": [
{
"name": "JavaSE-14",
"path": "/opt/jdk-14.0.2",
"default": true
}
],
"clangd.path": "~/.config/coc/extensions/coc-clangd-data/install/16.0.2/clangd_16.0.2/bin/clangd",
"prettier": {
"tabWidth": 4,
"printWidth": 160,
"singleQuote": true,
"disableSuccessMessage": true,
"formatterPriority": 999
},
"go.goplsOptions": {
"completeUnimported": true,
"staticcheck": true
},
"git.enableGutters": true,
"Lua.telemetry.enable": true,
"@nomicfoundation/coc-solidity.telemetry": true
}