-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcoc-settings.json
More file actions
33 lines (33 loc) · 1.1 KB
/
coc-settings.json
File metadata and controls
33 lines (33 loc) · 1.1 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
{
"inlayHint.enableParameter": false,
"coc.preferences.extensionUpdateCheck": "daily",
"python.pythonPath": "python3",
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": ["--max-line-length=120"],
"pyright.inlayHints.functionReturnTypes": false,
"pyright.inlayHints.variableTypes": false,
"languageserver": {
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
"ccls": {
"command": "ccls",
"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp", "h", "hpp", "cu"],
"rootPatterns": [".ccls", "compile_commands.json", ".git/", ".hg/"],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
},
"compilationDatabaseDirectory": "./build/"
}
},
"dockerfile": {
"command": "docker-langserver",
"filetypes": ["dockerfile"],
"args": ["--stdio"]
}
}
}