From 29a49836641f3cabcc7b8fa4084fa0f16cb36289 Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Mon, 1 Apr 2024 16:39:39 -0500 Subject: [PATCH] added directional split commands to zellij --- modules/home-manager/terminal/zellij/config.kdl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/home-manager/terminal/zellij/config.kdl b/modules/home-manager/terminal/zellij/config.kdl index 2175a5d..ff13c64 100644 --- a/modules/home-manager/terminal/zellij/config.kdl +++ b/modules/home-manager/terminal/zellij/config.kdl @@ -148,6 +148,8 @@ keybinds clear-defaults=true{ bind "Alt g" { SwitchToMode "Locked"; } bind "Alt q" { Quit; } bind "Alt n" { NewPane; } + bind "Alt _" { NewPane "Down"; } + bind "Alt |" { NewPane "Right"; } bind "Alt h" "Alt Left" { MoveFocusOrTab "Left"; } bind "Alt l" "Alt Right" { MoveFocusOrTab "Right"; } bind "Alt j" "Alt Down" { MoveFocus "Down"; }