feat(zellij): add some config settings

This commit is contained in:
Mohammad Rafiq 2025-04-06 23:36:45 +08:00
parent 45ba87b264
commit 9ecb57a4b6
No known key found for this signature in database

View file

@ -1,14 +1,13 @@
{ {
home-manager.users.rafiq = { home-manager.users.rafiq.programs.zellij = {
programs.zellij = { enable = true;
enable = true; attachExistingSession = true;
settings = { settings = {
show_startup_tips = false; show_startup_tips = false;
keybinds.unbind = [ pane_frames = false;
"Ctrl h" keybinds.unbind = [
]; "Ctrl h"
}; ];
}; };
home.sessionVariables.ZELLIJ_AUTO_ATTACH = "true";
}; };
} }