mirror of
https://github.com/ivuorinen/astronvim_config.git
synced 2026-01-26 11:24:07 +00:00
27 lines
969 B
Lua
27 lines
969 B
Lua
return {
|
|
settings = {
|
|
javascript = {
|
|
inlayHints = {
|
|
includeInlayEnumMemberValueHints = true,
|
|
includeInlayFunctionLikeReturnTypeHints = true,
|
|
includeInlayFunctionParameterTypeHints = true,
|
|
includeInlayParameterNameHints = "all", -- 'none' | 'literals' | 'all';
|
|
includeInlayParameterNameHintsWhenArgumentMatchesName = true,
|
|
includeInlayPropertyDeclarationTypeHints = true,
|
|
includeInlayVariableTypeHints = true,
|
|
},
|
|
},
|
|
typescript = {
|
|
inlayHints = {
|
|
includeInlayEnumMemberValueHints = true,
|
|
includeInlayFunctionLikeReturnTypeHints = true,
|
|
includeInlayFunctionParameterTypeHints = true,
|
|
includeInlayParameterNameHints = "all", -- 'none' | 'literals' | 'all';
|
|
includeInlayParameterNameHintsWhenArgumentMatchesName = true,
|
|
includeInlayPropertyDeclarationTypeHints = true,
|
|
includeInlayVariableTypeHints = true,
|
|
},
|
|
},
|
|
},
|
|
}
|