feat(wezterm): add keybind for debug overlay

This commit is contained in:
Price Hiller 2023-05-03 16:26:57 -05:00
parent a69f3d9859
commit 01c9dc628a
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -69,6 +69,9 @@ return {
-- NOTE: Copy & Paste
{ key = "v", mods = "LEADER", action = wezterm.action.PasteFrom("Clipboard") },
{ key = "c", mods = "LEADER", action = wezterm.action.CopyTo("ClipboardAndPrimarySelection") },
-- NOTE: Debugging
{ key = "D", mods = "CTRL|SHIFT", action = wezterm.action.ShowDebugOverlay }
},
key_tables = {},
}