58 lines
1.4 KiB
Nix
58 lines
1.4 KiB
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
env.WINIT_X11_SCALE_FACTOR = "1";
|
|
font = {
|
|
normal.family = "Iosevka Nerd Font";
|
|
size = 14;
|
|
};
|
|
colors = {
|
|
primary = {
|
|
background = "#2E3440";
|
|
foreground = "#D8DEE9";
|
|
dim_foreground = "#A5AFBA";
|
|
};
|
|
cursor = {
|
|
text = "#2E3440";
|
|
cursor = "#D8DEE9";
|
|
};
|
|
vi_mode_cursor = {
|
|
text = "#2E3440";
|
|
cursor = "#D8DEE9";
|
|
};
|
|
normal = {
|
|
black = "#3B4252";
|
|
red = "#BF616A";
|
|
green = "#A3BE8C";
|
|
yellow = "#EBCB8B";
|
|
blue = "#81A1C1";
|
|
magenta = "#B48EAD";
|
|
cyan = "#88C0D0";
|
|
white = "#E5E9F0";
|
|
};
|
|
bright = {
|
|
black = "#4C566A";
|
|
red = "#BF616A";
|
|
green = "#A3BE8C";
|
|
yellow = "#EBCB8B";
|
|
blue = "#81A1C1";
|
|
magenta = "#B48EAD";
|
|
cyan = "#8FBCBB";
|
|
white = "#ECEFF4";
|
|
};
|
|
dim = {
|
|
black = "#373E4D";
|
|
red = "#94545D";
|
|
green = "#809575";
|
|
yellow = "#B29E75";
|
|
blue = "#68809A";
|
|
magenta = "#8C738A";
|
|
cyan = "#6D96A5";
|
|
white = "#ADB3BB";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|