Updates
This commit is contained in:
parent
bf4c403707
commit
40edee33f7
2 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
'';
|
||||
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue