-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
101 lines (101 loc) · 2.65 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
{
"suggest.timeout": 500,
"suggest.noselect": false,
"suggest.triggerCompletionWait": 50,
"suggest.echodocSupport": true,
"suggest.completionItemKindLabels": {
// "keyword": "",
"keyword": "",
"variable": "𝒙",
"value": "",
"operator": "",
"function": "",
"reference": "",
"constant": "",
// "method": "",
"method": "",
"struct": "פּ",
"class": "",
"interface": "",
"text": "ﭨ",
"enum": "",
"enumMember": "",
"module": "",
"color": "",
"property": "",
"field": "",
"unit": "",
"event": "ﮦ",
"file": "",
"folder": "",
"snippet": "",
"typeParameter": "",
"default": ""
},
//pairs
// "pairs.enableCharacters": [
// "(",
// "[",
// "{",
// "'",
// "\"",
// "`"
// ],
//diagnostic
// "diagnostic.messageTarget": "echo",
// "diagnostic.virtualText": true,
// "diagnostic.virtualTextPrefix": "➤ ",
"diagnostic.errorSign": "✗",
"diagnostic.warningSign": "⚡",
"diagnostic.infoSign": "●",
"diagnostic.displayByAle": false,
"diagnostic.refreshOnInsertMode": true,
//python
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
//Snippet
"snippets.userSnippetsDirectory": "~/.config/nvim/snips",
"coc.preferences.snippetStatusText": "Ⓢ ",
//CocList
"list.source.files.defaultOptions": [
"--auto-preview"
],
"list.source.outline.defaultOptions": [
"--auto-preview"
],
//sessions
"session.directory": "~/.cache/vim/session",
// coc-explorer
"explorer.icon.expanded": "▾",
"explorer.icon.collapsed": "▸",
"explorer.width": 30,
"explorer.icon.enableNerdfont": true,
// "explorer.icon.source": "nvim-web-devicons",
"explorer.quitOnOpen": false,
"explorer.floating.width": -20,
"explorer.floating.height": -10,
"explorer.openAction.strategy": "sourceWindow",
"explorer.keyMappings.global": {
".": "toggleHidden",
"<cr>": [
"wait",
"expandable?",
[
"wait",
"expanded?",
"collapse",
"expand"
],
"open"
],
"n": "addFile",
"N": "addDirectory",
"l": "cd",
"D": "delete"
},
//coc-clangd
"semanticTokens.filetypes": ["c","cpp"],
"clangd.fallbackFlags": [
"-lm"
]
}