You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
my-nvim-lua/lua/custom/plugins/configs/lsp_signature.lua

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