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 ssh-add > /dev/null &> /dev/null
if set -q ZELLIJ if set -q ZELLIJ
else else
zellij attach -c "MAIN"; exit exec zellij attach -c "MAIN" && exit
end end
''; '';

View file

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