🎨 ux(nvim): tsserver now showing variable types

This commit is contained in:
Sergio Laín 2023-12-04 00:35:19 +01:00
parent aa0c0ea9f2
commit 95185927bf
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -90,10 +90,10 @@ return {
}, },
inlayHints = { inlayHints = {
includeInlayParameterNameHints = "all", includeInlayParameterNameHints = "all",
includeInlayParameterNameHintsWhenArgumentMatchesName = false, includeInlayParameterNameHintsWhenArgumentMatchesName = true,
includeInlayFunctionParameterTypeHints = true, includeInlayFunctionParameterTypeHints = true,
includeInlayVariableTypeHints = false, includeInlayVariableTypeHints = true,
includeInlayVariableTypeHintsWhenTypeMatchesName = false, includeInlayVariableTypeHintsWhenTypeMatchesName = true,
includeInlayPropertyDeclarationTypeHints = true, includeInlayPropertyDeclarationTypeHints = true,
includeInlayFunctionLikeReturnTypeHints = true, includeInlayFunctionLikeReturnTypeHints = true,
includeInlayEnumMemberValueHints = true, includeInlayEnumMemberValueHints = true,
@ -107,10 +107,10 @@ return {
}, },
inlayHints = { inlayHints = {
includeInlayParameterNameHints = "all", includeInlayParameterNameHints = "all",
includeInlayParameterNameHintsWhenArgumentMatchesName = false, includeInlayParameterNameHintsWhenArgumentMatchesName = true,
includeInlayFunctionParameterTypeHints = true, includeInlayFunctionParameterTypeHints = true,
includeInlayVariableTypeHints = false, includeInlayVariableTypeHints = true,
includeInlayVariableTypeHintsWhenTypeMatchesName = false, includeInlayVariableTypeHintsWhenTypeMatchesName = true,
includeInlayPropertyDeclarationTypeHints = true, includeInlayPropertyDeclarationTypeHints = true,
includeInlayFunctionLikeReturnTypeHints = true, includeInlayFunctionLikeReturnTypeHints = true,
includeInlayEnumMemberValueHints = true, includeInlayEnumMemberValueHints = true,