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
|
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
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue