blob: 3044ff9f599c5d4253d637019562af280effa440 (
plain) (
tree)
|
|
{ config, pkgs, lib, ...}:
{
programs.alacritty = {
enable = true;
settings = {
env = {
TERM = "xterm-256color";
};
colors = {
primary = {
background = "#ffffff";
foreground = "#000000";
};
};
draw_bold_text_with_bright_colors = true;
selection = {
save_to_clipboard = true;
};
font = {
size = 12;
};
cursor = {
style.blinking = "Never";
unfocused_hollow = true;
};
window = {
padding = {
x = 5;
y = 5;
};
};
};
};
}
|