Compare commits

...

2 commits

Author SHA1 Message Date
7ca4c911a6
extend leader timeout 2025-06-27 10:51:22 +08:00
8639824198
close tab 2025-06-27 10:51:07 +08:00

View file

@ -87,7 +87,7 @@ config.colors = {
config.disable_default_key_bindings = true config.disable_default_key_bindings = true
-- Setup leader key -- Setup leader key
config.leader = { key = "a", mods = "ALT", timeout_milliseconds = 1000 } config.leader = { key = "a", mods = "ALT", timeout_milliseconds = 2000 }
-- General keymaps -- General keymaps
config.keys = { config.keys = {
@ -113,6 +113,12 @@ config.keys = {
action = wezterm.action.ActivateTabRelative(1), action = wezterm.action.ActivateTabRelative(1),
}, },
{ -- Close tab
key = "Q",
mods = "LEADER",
action = wezterm.action.CloseCurrentTab({ confirm = false }),
},
-- --
-- Pane management -- Pane management
-- --