feat: add nvimdots
This commit is contained in:
15
nvim/lua/modules/configs/completion/lsp-signature.lua
Normal file
15
nvim/lua/modules/configs/completion/lsp-signature.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
return function()
|
||||
require("modules.utils").load_plugin("lsp_signature", {
|
||||
bind = true,
|
||||
-- TODO: Remove the following line when nvim-cmp#1613 gets resolved
|
||||
check_completion_visible = false,
|
||||
floating_window = true,
|
||||
floating_window_above_cur_line = true,
|
||||
hi_parameter = "Search",
|
||||
hint_enable = true,
|
||||
transparency = nil, -- disabled by default, allow floating win transparent value 1~100
|
||||
wrap = true,
|
||||
zindex = 45, -- avoid overlap with nvim.cmp
|
||||
handler_opts = { border = "single" },
|
||||
})
|
||||
end
|
||||
Reference in New Issue
Block a user