-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcoc-settings.json
More file actions
33 lines (33 loc) · 1.03 KB
/
coc-settings.json
File metadata and controls
33 lines (33 loc) · 1.03 KB
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
{
"coc.preferences.previewAutoClose": false,
"coc.preferences.previewSize": 35,
"languageserver": {
"clangd": {
"command": "clangd-mine",
"rootPatterns": ["compile_flags.txt", "compile_commands.json"],
"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"]
},
"yamlls": {
"command": "yaml-language-server",
"args": ["--stdio"],
"filetypes": ["yaml", "yml"],
"rootPatterns": [".git/"],
"initializationOptions": {
"yaml": {
"validate": true,
"hover": true,
"completion": true,
"format": { "enable": true },
"schemaStore": {
"enable": true
},
"schemas": {
},
"yamlVersion": "1.2"
}
}
}
},
"diagnostic.checkCurrentLine": true,
"inlayHint.display": false
}