summaryrefslogtreecommitdiff
path: root/config/nvim/lua/plugins/lsp_signature.lua
blob: b9add0b7f16ad6a13c775a895be358aa8dd15fe0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
return {
	"ray-x/lsp_signature.nvim",
	event = "VeryLazy",
	opts = {
		doc_lines = 1,
		max_height = 3,
		hint_prefix = "",
		hint_prefix = {
			above = "↙ ",
			current = "← ",
			below = "↖ ",
		},
		floating_window = true,
	},
}