-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcoc-settings.json
134 lines (134 loc) · 3.89 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
{
"coc.preferences.enableFloatHighlight": true,
"coc.preferences.snippetStatusText": "Ⓢ ",
"coc.preferences.extensionUpdateCheck": "weekly",
"coc.preferences.messageLevel": "error",
"coc.preferences.enableMessageDialog": true,
"coc.source.ultisnips.shortcut": "US",
"list.signOffset": 900,
"docker.enable": true,
"coc.preferences.formatOnSaveFiletypes": [
"json",
"hjson",
"sql",
"lua"
],
"coc.source.omni.filetypes": [
"org",
"markdown",
"vimwiki",
"json"
],
"coc.source.ultisnips.enable": true,
"coc.source.emoji.enable": true,
"coc.source.emoji.triggerCharacters": [
"="
],
"coc.source.emoji.filetypes": [
"markdown",
"vimwiki",
"org",
"python",
"lua"
],
"sql.formatOptions": {
"language": "spark",
"tabWidth": 4,
"keywordCase": "lower",
"newlineBeforeOpenParen": false,
"newlineBeforeCloseParen": true,
"logicalOperatorNewline": "after",
"multilineLists": "avoid",
"aliasAs": "always",
"newlineBeforeSemicolon": false
},
"ltex.enabled": true,
"ltex.language": "en",
"ltex.completionEnabled": true,
"ltex.disabledRules": {
"en": [
"WHITESPACE_RULE"
]
},
"suggest.floatConfig": {
"borderhighlight": "CocBorderHighlight",
"border": true
},
"hover.floatConfig": {
"borderhighlight": "CocBorderHighlight",
"border": true
},
"signature.floatConfig": {
"borderhighlight": "CocBorderHighlight",
"border": true
},
"diagnostic.floatConfig": {
"borderhighlight": "CocBorderHighlight",
"border": true
},
"suggest.detailMaxLength": 50,
"suggest.removeDuplicateItems": true,
"suggest.noselect": false,
"suggest.enablePreselect": true,
"suggest.triggerAfterInsertEnter": true,
"suggest.autoTrigger": "always",
"suggest.timeout": 500,
"suggest.enablePreview": true,
"suggest.floatEnable": true,
"suggest.detailField": "preview",
"suggest.snippetIndicator": "~",
"suggest.triggerCompletionWait": 10,
"suggest.completionItemKindLabels": {
"keyword": " ",
"variable": " ",
"value": " ",
"operator": " ",
"constructor": " ",
"function": " ",
"reference": " ",
"constant": " 車",
"method": " ",
"struct": " ",
"class": " ﴯ ",
"interface": " ",
"text": " ",
"enum": " ",
"enumMember": " ",
"module": " ",
"color": " ",
"property": " ",
"field": " ",
"unit": " ",
"event": " ",
"file": " ",
"folder": " ﱮ ",
"snippet": " ",
"typeParameter": " ",
"default": " "
},
"diagnostic.errorSign": " ",
"diagnostic.warningSign": " ",
"diagnostic.infoSign": " ",
"diagnostic.hintSign": " ",
"diagnostic.displayByAle": false,
"diagnostic.messageTarget": "float",
"diagnostic.refreshOnInsertMode": false,
"diagnostic.checkCurrentLine": false,
"diagnostic.virtualTextPrefix": " ",
"diagnostic.virtualText": false, //disable virtualText for diagnostic
"diagnostic.messageDelay": 200,
"codeLens.enable": true,
"codeLens.subseparator": " ",
"list.previewHighlightGroup": "Statement",
"list.nextKeymap": "<C-e>",
"list.previousKeymap": "<C-u>",
"signature.target": "float",
"python.formatting.provider": "yapf",
"python.formatting.yapfArgs": [
"--style",
"{SPACES_AROUND_POWER_OPERATOR: True, SPACES_BEFORE_COMMENT: 1}"
],
"json.format.enable": true,
"Lua.telemetry.enable": true,
"sumneko-lua.enableNvimLuaDev": true
}