summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lsp/gopls.lua
blob: 765a0d50bb072d28a5fd3a04c62cf47a42ae0478 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
return {
	settings = {
		gopls = {
			hints = {
				rangeVariableTypes = true,
				parameterNames = true,
				constantValues = true,
				assignVariableTypes = true,
				compositeLiteralFields = true,
				compositeLiteralTypes = true,
				functionTypeParameters = true,
			},
		},
	}
}