22 lines
440 B
Nix
22 lines
440 B
Nix
{
|
|
programs.zellij = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
enableFishIntegration = true;
|
|
settings = {
|
|
#simplified_ui = true;
|
|
pane_frames = false;
|
|
copy_on_select = false;
|
|
show_startup_tips = true;
|
|
show_release_notes = false;
|
|
|
|
keybinds = {
|
|
locked = {
|
|
bind."Ctrl g" = {SwitchToMode = "normal";};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|