[LSP] Add bind for sig help

This commit is contained in:
2025-10-14 16:35:01 +02:00
parent 7f590d4841
commit 16b1dcfa90

View File

@@ -47,6 +47,9 @@ M.on_attach = function(client, bufnr)
opts.desc = "Show documentation for what is under cursor"
keymap.set("n", "<leader>k", vim.lsp.buf.hover, opts)
opts.desc = "Show signature help"
keymap.set("n", "<leader>v", vim.lsp.buf.signature_help, opts)
opts.desc = "Restart LSP"
keymap.set("n", "<leader>rs", ":LspRestart<CR>", opts)