59 lines
1,008 B
Nix
59 lines
1,008 B
Nix
{
|
|
enable = true;
|
|
|
|
settings = {
|
|
env = {
|
|
TERM = "alacritty";
|
|
LANG = "en_US.UTF-8";
|
|
LC_CTYPE = "en_US.UTF-8";
|
|
};
|
|
|
|
window = {
|
|
opacity = 0.4;
|
|
};
|
|
|
|
font = {
|
|
normal = {
|
|
family = "JetBrainsMonoNL Nerd Font";
|
|
style = "Regular";
|
|
};
|
|
|
|
size = 11;
|
|
};
|
|
|
|
colors = {
|
|
primary = {
|
|
background = "#001017";
|
|
foreground = "#b7b8b9";
|
|
};
|
|
|
|
cursor = {
|
|
text = "#0c0d0e";
|
|
cursor = "#b7b8b9";
|
|
};
|
|
|
|
normal = {
|
|
black = "#000000";
|
|
red = "#e31a1c";
|
|
green = "#31a345";
|
|
yellow = "#dca060";
|
|
blue = "#3182bd";
|
|
magenta = "#756bb1";
|
|
cyan = "#80b1d3";
|
|
white = "#b7b8b9";
|
|
};
|
|
|
|
bright = {
|
|
black = "#737475";
|
|
red = "#e31a1c";
|
|
green = "#31a345";
|
|
yellow = "#dca060";
|
|
blue = "#3182bd";
|
|
magenta = "#756bb1";
|
|
cyan = "#80b1d3";
|
|
white = "#fcfdfe";
|
|
};
|
|
};
|
|
};
|
|
}
|