diff --git a/home-manager/wezterm.lua b/home-manager/wezterm.lua index 1a9eff6..c509f62 100644 --- a/home-manager/wezterm.lua +++ b/home-manager/wezterm.lua @@ -82,10 +82,12 @@ for key, dir in pairs({ h = 'Left', j = 'Down', k = 'Up', l = 'Right' }) do table.insert(config.keys, { key = key, mods = 'CTRL', + action = act.ActivatePaneDirection(dir), }) table.insert(config.keys, { key = key, mods = 'LEADER', + action = act.SplitPane { direction = dir }, }) end