nix/programs/alacritty.nix

45 lines
992 B
Nix
Raw Normal View History

2024-07-04 01:14:24 +02:00
{ ... }:
2024-06-13 15:38:40 +02:00
{
2024-07-04 01:14:24 +02:00
home-manager.users.krizej.programs.alacritty = {
enable = true;
settings = {
font.size = 10;
2024-07-04 01:25:55 +02:00
window.padding = { x = 2; y = 2; };
2024-07-04 01:14:24 +02:00
cursor = {
style = {
shape = "Beam";
blinking = "On";
};
blink_timeout = 0;
unfocused_hollow = false;
2024-06-13 15:38:40 +02:00
};
2024-07-04 01:14:24 +02:00
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";
};
2024-06-13 15:38:40 +02:00
};
};
};
}