summaryrefslogtreecommitdiffstats
path: root/after/plugin/lspsignature.lua
blob: 7e2c1b286b153b68e6abba00b9da96e167bcde19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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"
  }
}