refactor(wezterm): use leader for invoking commands

This commit is contained in:
Price Hiller 2023-05-05 03:39:59 -05:00
parent 9f824de2ef
commit 1d8213b402
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -71,10 +71,10 @@ return {
{ key = "c", mods = "LEADER", action = wezterm.action.CopyTo("ClipboardAndPrimarySelection") }, { key = "c", mods = "LEADER", action = wezterm.action.CopyTo("ClipboardAndPrimarySelection") },
-- NOTE: Debugging -- NOTE: Debugging
{ key = "D", mods = "CTRL|SHIFT", action = wezterm.action.ShowDebugOverlay }, { key = "d", mods = "LEADER", action = wezterm.action.ShowDebugOverlay },
-- NOTE: Show Commands -- NOTE: Show Commands
{ key = "C", mods = "CTRL|SHIFT", action = wezterm.action.ActivateCommandPalette } { key = "a", mods = "LEADER", action = wezterm.action.ActivateCommandPalette }
}, },
key_tables = {}, key_tables = {},
} }