44 lines
992 B
Nix
44 lines
992 B
Nix
{ ... }:
|
|
{
|
|
home-manager.users.krizej.programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
font.size = 10;
|
|
window.padding = { x = 2; y = 2; };
|
|
cursor = {
|
|
style = {
|
|
shape = "Beam";
|
|
blinking = "On";
|
|
};
|
|
blink_timeout = 0;
|
|
unfocused_hollow = false;
|
|
};
|
|
colors = {
|
|
primary = {
|
|
foreground = "#e4e4ef";
|
|
background = "#181818";
|
|
};
|
|
normal = {
|
|
black = "#202020";
|
|
red = "#f43841";
|
|
green = "#73c936";
|
|
yellow = "#ffdd33";
|
|
blue = "#5a81ce";
|
|
magenta = "#ae65b7";
|
|
cyan = "#71afcf";
|
|
white = "#dddddd";
|
|
};
|
|
bright = {
|
|
black = "#282828";
|
|
red = "#ff4f58";
|
|
green = "#91d956";
|
|
yellow = "#ffee55";
|
|
blue = "#71afe8";
|
|
magenta = "#ce85e7";
|
|
cyan = "#91dfef";
|
|
white = "#f4f4ff";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|