From f846fb4466f15b800ac093c7c72cbd9e116cd0bf Mon Sep 17 00:00:00 2001 From: Kaan Barmore-Genc Date: Sun, 7 Jun 2026 14:22:21 -0500 Subject: [PATCH] Add zellij keybinds: spawn claude pane, move tabs with --- zellij/config.kdl | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/zellij/config.kdl b/zellij/config.kdl index b1f118b..5d9fd51 100644 --- a/zellij/config.kdl +++ b/zellij/config.kdl @@ -29,6 +29,8 @@ keybinds clear-defaults=true { bind "down" { GoToNextTab; } bind "up" { GoToPreviousTab; } bind "right" { GoToNextTab; } + bind "<" { MoveTab "left"; } + bind ">" { MoveTab "right"; } bind "1" { GoToTab 1; SwitchToMode "normal"; } bind "2" { GoToTab 2; SwitchToMode "normal"; } bind "3" { GoToTab 3; SwitchToMode "normal"; } @@ -41,6 +43,22 @@ keybinds clear-defaults=true { bind "[" { BreakPaneLeft; SwitchToMode "normal"; } bind "]" { BreakPaneRight; SwitchToMode "normal"; } bind "b" { BreakPane; SwitchToMode "normal"; } + bind "c" { + Run "claude" { direction "down"; } + MovePane "up"; + MoveFocus "down"; + Resize "Decrease up"; + Resize "Decrease up"; + Resize "Decrease up"; + Resize "Decrease up"; + Resize "Decrease up"; + Resize "Decrease up"; + Resize "Decrease up"; + Resize "Decrease up"; + Resize "Decrease up"; + Resize "Decrease up"; + SwitchToMode "normal"; + } bind "h" { GoToPreviousTab; } bind "j" { GoToNextTab; } bind "k" { GoToPreviousTab; } @@ -146,12 +164,10 @@ keybinds clear-defaults=true { bind "Alt f" { ToggleFloatingPanes; } bind "Ctrl g" { SwitchToMode "locked"; } bind "Alt h" { MoveFocusOrTab "left"; } - bind "Alt i" { MoveTab "left"; } bind "Alt j" { MoveFocus "down"; } bind "Alt k" { MoveFocus "up"; } bind "Alt l" { MoveFocusOrTab "right"; } bind "Alt n" { NewPane; } - bind "Alt o" { MoveTab "right"; } bind "Alt p" { TogglePaneInGroup; } bind "Alt Shift p" { ToggleGroupMarking; } bind "Ctrl q" { Quit; }