my-nvim-lua/lua/custom/plugins/configs/lsp_signature.lua

19 lines
238 B
Lua
Raw Normal View History

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