-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
66 lines (58 loc) · 1.68 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
{
"tsserver.npm": "/Users/feliperobledo/.nvm/versions/node/v12.13.0/bin/npm",
"tsserver.log": "verbose",
"tsserver.trace.server": "verbose",
"tsserver.maxTsServerMemory": 4096,
"typescript.showUnused" : true,
"typescript.autoClosingTags": true,
"typescript.suggest.autoImports": true,
"diagnostic.checkCurrentLine": true,
"eslint.enabled": true,
"eslint.run": "onSave",
"eslint.autoFixOnSave": true,
"eslint.quit": true,
"eslint.options": {
"configFile": ".eslintrc.js"
},
"python.jediEnabled": true,
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.pep8Enabled": true,
"coc.preferences.jumpCommand": "tab drop",
"coc.preferences.formatOnSaveFiletypes": [
"css",
"markdown",
"typescript",
"typescriptreact"
],
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": [
"c",
"cpp",
"objc",
"objcpp"
],
"rootPatterns": [
"compile_commands.json"
],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
},
"clang": {
"resourceDir": "/Library/Developer/CommandLineTools/usr/lib/clang/12.0.0",
"extraArgs": [
"-isystem",
"/Library/Developer/CommandLineTools/usr/include/c++/v1",
"-I",
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/"
]
}
}
}
},
"java.format.enabled": false,
"snippets.ultisnips.pythonPrompt": false,
}