-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
44 lines (44 loc) · 1.39 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
{
"python.jediEnabled": false,
"python.formatting.provider": "black",
"yaml.format.enable": true,
"[yaml]": {
"editor.tabsize": 2
},
"yaml.customTags": [
"!Ref",
"!Sub"
],
"[javascript]": {
"editor.tabsize": 2
},
"snippets.extends": {
"typescript": ["javascript"]
},
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"coc.preferences.formatOnSaveFiletypes": ["css","javascript", "typescript", "yaml"],
"prettier.printWidth": 119,
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"],
"rootPatterns": [".ccls", "compile_commands.json", ".git/", ".hg/"],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
},
"clang": {
"resourceDir": "/Library/Developer/CommandLineTools/usr/lib/clang/13.0.0",
"extraArgs": [
"-isystem",
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1",
"-I",
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/"
]
}
}
}
}
}