diff --git a/lua/valeth/plugins/core/lsp.lua b/lua/valeth/plugins/core/lsp.lua index 432af9a..e70c3ea 100644 --- a/lua/valeth/plugins/core/lsp.lua +++ b/lua/valeth/plugins/core/lsp.lua @@ -122,7 +122,7 @@ spec.config = function() bufmap(buf, "n", "ci", vim.diagnostic.open_float, "Show diagnostics") bufmap(buf, "n", "re", vim.lsp.buf.rename, "Rename item under cursor") bufmap(buf, { "n", "i" }, "", vim.lsp.buf.signature_help, "Open signature help") - bufmap(buf, "n", "", toggle_inlay_hints, "Toggle LSP inlay hints") + bufmap(buf, "n", "ch", toggle_inlay_hints, "Toggle LSP inlay hints") end })