-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathlsp_signature.lua
39 lines (36 loc) · 1.73 KB
/
lsp_signature.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
local M = {}
M.config = function()
local status_ok, sig = pcall(require, "lsp_signature")
if not status_ok then
return
end
local cfg = {
bind = true,
doc_lines = 10,
floating_window = false, -- show hint in a floating window, set to false for virtual text only mode
floating_window_above_cur_line = true,
fix_pos = false, -- set to true, the floating window will not auto-close until finish all parameters
hint_enable = true, -- virtual hint enable
-- hint_prefix = "🐼 ", -- Panda for parameter
hint_prefix = " ",
hint_scheme = "String",
-- use_lspsaga = false, -- set to true if you want to use lspsaga popup
hi_parameter = "Search", -- how your parameter will be highlight
max_height = 12, -- max height of signature floating_window, if content is more than max_height, you can scroll down
-- to view the hiding contents
max_width = 120, -- max_width of signature floating_window, line will be wrapped if exceed max_width
handler_opts = {
border = "single", -- double, single, shadow, none
},
-- transpancy = 80,
-- extra_trigger_chars = { "(", "," }, -- Array of extra characters that will trigger signature completion, e.g., {"(", ","}
zindex = 1002, -- by default it will be on top of all floating windows, set to 50 send it to bottom
debug = false, -- set to true to enable debug logging
log_path = "debug_log_file_path", -- debug log path
padding = "", -- character to pad on left and right of signature can be ' ', or '|' etc
shadow_blend = 36, -- if you using shadow as border use this set the opacity
shadow_guibg = "Black", -- if you using shadow as border use this set the color e.g. 'Green' or '#121315'
}
sig.setup(cfg)
end
return M