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
|
{
"coc.preferences.maxFileSize": "10000MB",
"hover.floatConfig": {
"shadow": false,
"maxWidth": 70,
"border": true,
"focusable": true,
"rounded": true
},
"Lua.workspace.maxPreload": 10000,
"Lua.workspace.preloadFileSize": 10000000,
"Lua.diagnostics.enable": true,
"Lua.completion.callSnippet": "Both",
"Lua.completion.displayContext": 2,
"Lua.completion.showWord": "Enable",
"Lua.completion.keywordSnippet": "Both",
"Lua.hint.setType": false,
"Lua.hint.paramName": "Disable",
"Lua.hint.paramType": false,
"Lua.hint.arrayIndex": "Disable",
"Lua.window.statusBar": false,
"sumneko-lua.enableNvimLuaDev": true,
"clangd.compilationDatabasePath": "build",
"rust-analyzer.restartServerOnConfigChange": true,
"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.closingBraceHints.enable": false,
"rust-analyzer.inlayHints.chainingHints.enable": false,
"rust-analyzer.inlayHints.parameterHints.enable": false,
"rust-analyzer.inlayHints.typeHints.enable": false,
"rust-analyzer.inlayHints.lifetimeElisionHints.enable": "never",
"rust-analyzer.inlayHints.expressionAdjustmentHints.enable": "never",
"rust-analyzer.inlayHints.lifetimeElisionHints.useParameterNames": true,
"rust-analyzer.updates.channel": "stable",
"rust-analyzer.numThreads": 64,
"rust-analyzer.cachePriming.enable": true,
"rust-analyzer.cachePriming.numThreads": 64,
"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"
]
}
|