NixOS-Config/modules/home/programs/gui/foot/default.nix
2024-10-15 02:40:43 -04:00

40 lines
902 B
Nix

{ config, ... }:
{
programs.foot = {
enable = true;
server.enable = false;
settings = {
main = {
term = "xterm-256color";
font = "${config.look.fonts.nerd}:size=14.7";
};
cursor = {
style = "beam";
};
colors = {
alpha = "0.65";
background = "${config.look.colors.dark}";
regular0 = "3f3f3f";
regular1 = "cc0000";
regular2 = "4e9a06";
regular3 = "c4a000";
regular4 = "94bff3";
regular5 = "85678f";
regular6 = "06989a";
regular7 = "dcdccc";
bright0 = "545454";
bright1 = "fc5454";
bright2 = "8ae234";
bright3 = "fce94f";
bright4 = "94bff3";
bright5 = "b294bb";
bright6 = "93e0e3";
bright7 = "ffffff";
};
key-bindings = {
search-start = "Control+f";
};
};
};
}