nixos-config/home/foot.nix

58 lines
1.6 KiB
Nix
Raw Normal View History

2024-12-19 02:32:58 -05:00
{ ... }:
{
2024-12-14 00:33:01 -05:00
programs.foot = {
enable = true;
settings = {
main = {
font = "RobotoMono Nerd Font:size=8";
dpi-aware = "yes";
};
bell = {
urgent = "no";
notify = "no";
2024-12-14 13:41:40 -05:00
visual = "no";
2024-12-14 00:33:01 -05:00
};
cursor = {
style = "beam";
blink = "yes";
blink-rate = 500;
beam-thickness = 1.5;
};
mouse = {
hide-when-typing = "yes";
};
2024-12-25 03:16:55 -05:00
# rose pine: https://codeberg.org/dnkl/foot/src/branch/master/themes/rose-pine
2024-12-14 00:33:01 -05:00
colors = {
2024-12-25 03:16:55 -05:00
background = "191724";
foreground = "e0def4";
regular0 = "26233a"; # black (Overlay)
regular1 = "eb6f92"; # red (Love)
regular2 = "9ccfd8"; # green (Foam)
regular3 = "f6c177"; # yellow (Gold)
regular4 = "31748f"; # blue (Pine)
regular5 = "c4a7e7"; # magenta (Iris)
regular6 = "ebbcba"; # cyan (Rose)
regular7 = "e0def4"; # white (Text)
bright0 = "47435d"; # bright black (lighter Overlay)
bright1 = "ff98ba"; # bright red (lighter Love)
bright2 = "c5f9ff"; # bright green (lighter Foam)
bright3 = "ffeb9e"; # bright yellow (lighter Gold)
bright4 = "5b9ab7"; # bright blue (lighter Pine)
bright5 = "eed0ff"; # bright magenta (lighter Iris)
bright6 = "ffe5e3"; # bright cyan (lighter Rose)
bright7 = "fefcff"; # bright white (lighter Text)
flash = "f6c177"; # yellow (Gold)
2024-12-14 00:33:01 -05:00
};
key-bindings = {
clipboard-copy = "Control+Shift+c XF86Copy";
clipboard-paste = "Control+Shift+v XF86Paste";
quit = "Control+q";
};
};
};
}