Files
nvim/after/plugin/lspsignature.lua

13 lines
216 B
Lua

local status_ok, lspsignature = pcall(require, "lsp_signature")
if not status_ok then
return
end
lspsignature.setup {
hint_enable = false,
floating_window = true,
handler_opts = {
border = "shadow"
}
}