23 lines
464 B
Lua
23 lines
464 B
Lua
return {
|
|
"chrisgrieser/nvim-lsp-endhints",
|
|
event = "LspAttach",
|
|
opts = {
|
|
icons = {
|
|
type = " ",
|
|
parameter = " ",
|
|
offspec = " ", -- hint kind not defined in official LSP spec
|
|
unknown = " ", -- hint kind is nil
|
|
},
|
|
label = {
|
|
truncateAtChars = 20,
|
|
padding = 1,
|
|
marginLeft = 0,
|
|
sameKindSeparator = ", ",
|
|
},
|
|
extmark = {
|
|
priority = 50,
|
|
},
|
|
autoEnableHints = true,
|
|
},
|
|
}
|