base24 yellow doesn't have a "bright" variant, so switch to orange in alacritty to keep a difference
23 lines
504 B
Nix
23 lines
504 B
Nix
{ config, lib, ... }:
|
|
{
|
|
programs.alacritty = {
|
|
enable = true;
|
|
settings = {
|
|
colors = with config.lib.stylix.colors.withHashtag; {
|
|
normal.yellow = lib.mkForce orange;
|
|
bright.yellow = lib.mkForce bright-orange;
|
|
};
|
|
window = {
|
|
dynamic_title = true;
|
|
padding = {
|
|
x = 5;
|
|
y = 5;
|
|
};
|
|
};
|
|
general.live_config_reload = true;
|
|
selection.save_to_clipboard = true;
|
|
mouse.hide_when_typing = true;
|
|
};
|
|
};
|
|
}
|