[feat] Add foot configuration

This commit is contained in:
Uttarayan
2024-02-14 21:14:57 +05:30
parent dc8efefe67
commit 8df56b55d3

View File

@@ -37,7 +37,9 @@
}; };
package = pkgs.nushellFull; package = pkgs.nushellFull;
configFile.text = '' configFile.text = ''
show_banner: false, $env.config = {
show_banner: false,
}
''; '';
}; };
zoxide = { zoxide = {
@@ -78,6 +80,43 @@
enableFishIntegration = true; enableFishIntegration = true;
enableNushellIntegration = true; enableNushellIntegration = true;
}; };
foot = {
enable = true;
server.enable = true;
settings = {
main = {
shell = "${pkgs.fish.outPath}/bin/fish";
font = "Hasklug Nerd Font Mono:size=13";
};
colors = {
foreground = "f8f8f2";
initial-window-size-pixels="1440x800";
background=000000;
alpha=0.8;
"136" = "af8700";
regular0 ="21222c";
regular1 ="ff5555";
regular2 ="50fa7b";
regular3 ="f1fa8c";
regular4 ="bd93f9";
regular5 ="ff79c6";
regular6 ="8be9fd";
regular7 ="f8f8f2";
bright0 ="6272a4";
bright1 ="ff6e6e";
bright2 ="69ff94";
bright3 ="ffffa5";
bright4 ="d6acff";
bright5 ="ff92df";
bright6 ="a4ffff";
bright7 ="ffffff";
};
};
};
}; };