12 lines
169 B
Lua
12 lines
169 B
Lua
|
local ok, lsp_signature = pcall(require, "lsp_signature")
|
||
|
if not ok then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
lsp_signature.setup({
|
||
|
bind = true,
|
||
|
handler_opts = {
|
||
|
border = "rounded",
|
||
|
},
|
||
|
})
|