summaryrefslogtreecommitdiff
path: root/coc-settings.json
blob: 913203610cb6395b1cd75fbb640e4540529621d3 (plain)
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
69
70
71
72
73
74
{
	"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
		}
	},
	"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.chainingHints.enable": false,
	"rust-analyzer.inlayHints.parameterHints.enable": true,
	"rust-analyzer.inlayHints.typeHints.enable": false,
	"rust-analyzer.inlayHints.lifetimeElisionHints.enable": "always",
	"rust-analyzer.inlayHints.expressionAdjustmentHints.enable": "always",
	"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"
	]
}