This commit is contained in:
albert 2024-04-29 19:34:53 +09:00
parent bf4c403707
commit 40edee33f7
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
2 changed files with 6 additions and 6 deletions

View file

@ -9,7 +9,7 @@
ssh-add > /dev/null &> /dev/null
if set -q ZELLIJ
else
zellij attach -c "MAIN"; exit
exec zellij attach -c "MAIN" && exit
end
'';

View file

@ -1,17 +1,17 @@
{ config, ... }: {
programs.zellij = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
# enableBashIntegration = true;
# enableFishIntegration = true;
settings = {
mirror_session = true;
simplified_ui = true;
ui.pane_frames.rounded_corners = true;
ui.pane_frames.hide_session_name = false;
ui.pane_frames.hide_session_name = true;
theme = "stylix";
themes.stylix = with config.lib.stylix.colors.withHashtag; {
bg = base02;
fg = base06;
fg = base05;
red = base08;
green = base0B;
blue = base0D;
@ -20,7 +20,7 @@
orange = base09;
cyan = base0C;
black = base00;
white = base07;
white = base05;
};
};
};