2022-09-09 18:52:07 +00:00
|
|
|
local present, signature = pcall(require, "lsp_signature")
|
|
|
|
|
|
|
|
if not present then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local config = {
|
2022-09-12 21:37:54 +00:00
|
|
|
floating_window = true,
|
2022-09-09 18:52:07 +00:00
|
|
|
hint_enable = true,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-01-30 21:13:34 +00:00
|
|
|
local M = {}
|
2022-09-09 18:52:07 +00:00
|
|
|
M.setup = function()
|
|
|
|
signature.setup(config)
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|