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 = {
programs.zellij = {
enable = true;
settings = {
show_startup_tips = false;
keybinds.unbind = [
"Ctrl h"
];
};
home-manager.users.rafiq.programs.zellij = {
enable = true;
attachExistingSession = true;
settings = {
show_startup_tips = false;
pane_frames = false;
keybinds.unbind = [
"Ctrl h"
];
};
home.sessionVariables.ZELLIJ_AUTO_ATTACH = "true";
};
}