2021-05-20 14:02:49 +07:00
|
|
|
{ config, ... }: {
|
|
|
|
|
programs.alacritty = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
|
|
|
|
scrolling = {
|
|
|
|
|
history = 10000;
|
|
|
|
|
multiplier = 3;
|
|
|
|
|
};
|
|
|
|
|
font = {
|
|
|
|
|
normal = {
|
2021-07-05 15:05:01 +07:00
|
|
|
family = "CascadiaCodePL";
|
2021-05-20 14:02:49 +07:00
|
|
|
style = "Regular";
|
|
|
|
|
};
|
|
|
|
|
size = 8.6;
|
|
|
|
|
};
|
|
|
|
|
window = {
|
|
|
|
|
dynamic_title = true;
|
|
|
|
|
padding = {
|
|
|
|
|
x = 5;
|
|
|
|
|
y = 0;
|
|
|
|
|
};
|
|
|
|
|
};
|
2021-05-30 11:01:55 +07:00
|
|
|
# TODO: how
|
|
|
|
|
# hints.enabled = [{
|
|
|
|
|
# command = "xdg-open";
|
|
|
|
|
# post_processing = true;
|
|
|
|
|
# mouse = {
|
|
|
|
|
# enabled = true;
|
|
|
|
|
# mods = "Control";
|
|
|
|
|
# };
|
|
|
|
|
# }];
|
2021-05-20 14:02:49 +07:00
|
|
|
|
2021-05-30 22:10:11 +07:00
|
|
|
colors.primary.background = "#000000";
|
|
|
|
|
background_opacity = 0.65;
|
2021-05-20 14:02:49 +07:00
|
|
|
draw_bold_text_with_bright_colors = true;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|