Basic zellij configuration

This commit is contained in:
Greg Hellings
2025-07-24 09:56:18 -05:00
parent 54c8c6c529
commit 1354eee354
+24
View File
@@ -11,4 +11,28 @@
] ++ (lib.optionals pkgs.stdenv.hostPlatform.isLinux [
impala
]);
programs = {
zellij = {
enable = true;
attachExistingSession = true;
enableZshIntegration = pkgs.stdenv.hostPlatform.isDarwin;
settings = {
keybinds = {
normal._children = [
{
bind = {
_args = [ "Ctrl b" ];
_children = [
{
SwitchToMode._args = [ "locked" ];
}
];
};
}
];
}; # /keybinds
}; # /settings
};
};
}