add foot config

This commit is contained in:
blahai 2024-10-13 16:58:17 +03:00
parent 9f0b174303
commit 13d0aadead
No known key found for this signature in database
3 changed files with 224 additions and 159 deletions

View file

@ -1,6 +1,9 @@
{
imports = [
./starship.nix
./fastfetch.nix
./fish/default.nix
]
./alacritty/default.nix
./foot/default.nix
];
}

View file

@ -0,0 +1,49 @@
{ pkgs, lib, config, ... }: {
programs.foot = {
enable = true;
settings = {
term = "xterm-256color";
title = "foot";
font = "SpaceMono Nerd Font:size11";
letter-spacing = 0;
pad = "25x25";
cursor = {
color = "11111b f5e0dc";
style = "beam";
beam-thickness = 1.5;
};
colors = {
foreground = "cdd6f4";
background = "1e1e2e";
alpha = 0.9;
regular0 = "45475a";
regular1 = "f38ba8";
regular2 = "a6e3a1";
regular3 = "f9e2af";
regular4 = "89b4fa";
regular5 = "f5c2e7";
regular6 = "94e2d5";
regular7 = "bac2de";
bright0 = "585b70";
bright1 = "f38ba8";
bright2 = "a6e3a1";
bright3 = "f9e2af";
bright4 = "89b4fa";
bright5 = "f5c2e7";
bright6 = "94e2d5";
bright7 = "a6adc8";
selection-foreground = "cdd6f4";
selection-background = "414356";
search-box-no-match = "11111b f38ba8";
search-box-match = "cdd6f4 313244";
jump-labels = "11111b fab387";
urls = "89b4fa";
};
};
};
}