my-nvim-lua/lua/custom/plugins/configs/lsp_signature.lua
2023-01-30 22:13:34 +01:00

19 lines
238 B
Lua

local present, signature = pcall(require, "lsp_signature")
if not present then
return
end
local config = {
floating_window = true,
hint_enable = true,
}
local M = {}
M.setup = function()
signature.setup(config)
end
return M