feat(nvim): add codelens support to tsserver

This commit is contained in:
Sergio Laín 2024-03-18 00:13:46 +01:00
parent ecb91890dc
commit 2656d282e4
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -48,9 +48,22 @@ return {
settings = { settings = {
typescript = { typescript = {
inlayHints = inlayHints, inlayHints = inlayHints,
implementationsCodeLens = {
enabled = true,
},
referencesCodeLens = {
enabled = true,
showOnAllFunctions = true,
},
}, },
javascript = { javascript = {
inlayHints = inlayHints, inlayHints = inlayHints,
implementationsCodeLens = {
enabled = true,
},
referencesCodeLens = {
enabled = true,
showOnAllFunctions = true,
}, },
}, },
keys = { keys = {