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
|
{
"coc.preferences.maxFileSize": "10000MB",
"hover.floatConfig": {
"shadow": true,
"maxWidth": 170
},
"Lua": {
"workspace": {
"maxPreload": 10000,
"preloadFileSize": 10000000
},
"runtime": {
"version": "Lua 5.1"
},
"diagnostics": {
"enable": true,
"globals": [
"vim"
]
},
"telemetry": {
"enabled": false
},
"completion": {
"callSnippet": "Both",
"displayContext": 2,
"showWord": "Enable",
"keywordSnippet": "Both"
},
"hint": {
"setType": true,
"paramName": "Disable",
"paramType": false
},
"IntelliSense": {
"traceBeSetted": true,
"traceFieldInject": true
},
"window": {
"statusBar": false
}
},
"Lua.telemetry.enable": false,
"clangd.inlayHints.enable": false,
"rust-analyzer.restartServerOnConfigChange": true,
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.cargo.features": "all",
"rust-analyzer.imports.granularity.enforce": true,
"rust-analyzer.imports.granularity.group": "module",
"rust-analyzer.imports.merge.glob": false,
"rust-analyzer.imports.prefix": "crate",
"rust-analyzer.inlayHints.renderColons": false,
"rust-analyzer.inlayHints.chainingHints.enable": false,
"rust-analyzer.inlayHints.parameterHints.enable": false,
"python.linting.pydocstyleEnabled": true,
"python.analysis.diagnosticMode": "workspace",
"python.analysis.typeCheckingMode": "strict",
"python.linting.pycodestyleEnabled": true,
"python.linting.pylintCategorySeverity.error": "Warning",
"python.venvPath": "~/virtualenvs",
"python.formatting.autopep8Path": "~/virtualenvs/lint/bin/autopep8",
"python.linting.pycodestylePath": "~/virtualenvs/lint/bin/pycodestyle",
"python.linting.pydocstylePath": "~/virtualenvs/lint/bin/pydocstyle",
"python.linting.pydocstyleArgs": [
"--convention=google"
]
}
|