nvim/lua/user/lsp/signature.lua
2023-06-08 14:35:24 -04:00

11 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",
},
})