13 lines
239 B
Nix
13 lines
239 B
Nix
{...}: {
|
|
programs.zellij = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
enableFishIntegration = true;
|
|
enableZshIntegration = true;
|
|
settings = {
|
|
pane_frames = false;
|
|
copy_on_select = false;
|
|
};
|
|
};
|
|
}
|