✨ feat(nvim): add codelens support to tsserver
This commit is contained in:
parent
ecb91890dc
commit
2656d282e4
1 changed files with 13 additions and 0 deletions
|
@ -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 = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue