feat(zellij): move layout around

This commit is contained in:
Mohammad Rafiq 2025-04-06 23:46:21 +08:00
parent 9ecb57a4b6
commit 2c468724fd
No known key found for this signature in database

View file

@ -1,13 +1,24 @@
{ {
home-manager.users.rafiq.programs.zellij = { home-manager.users.rafiq = {
enable = true; programs.zellij = {
attachExistingSession = true; enable = true;
settings = { attachExistingSession = true;
show_startup_tips = false; settings = {
pane_frames = false; show_startup_tips = false;
keybinds.unbind = [ pane_frames = false;
"Ctrl h" keybinds.unbind = [
]; "Ctrl h"
];
};
}; };
xdg.configFile."zellij/layouts/default.kdl".text = # kdl
''
layout {
pane
pane size=1 borderless=true {
plugin location="tab-bar"
}
}
'';
}; };
} }