2023-09-07 08:48:42 +01:00
|
|
|
{ pkgs, catppuccin-themes, ... }:
|
2023-08-07 09:19:09 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
programs.alacritty = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
2023-09-07 08:48:42 +01:00
|
|
|
import = [ catppuccin-themes.alacritty ];
|
2023-08-07 09:19:09 +01:00
|
|
|
window = {
|
|
|
|
dynamic_title = true;
|
2023-09-15 07:13:52 +01:00
|
|
|
padding = {
|
|
|
|
x = 10;
|
|
|
|
y = 10;
|
|
|
|
};
|
|
|
|
decorations = "none";
|
|
|
|
opacity = 0.8;
|
2023-08-07 09:19:09 +01:00
|
|
|
};
|
|
|
|
font = {
|
2023-10-07 10:25:55 +01:00
|
|
|
normal.family = "Fira Mono";
|
2023-08-07 09:19:09 +01:00
|
|
|
size = 14.0;
|
|
|
|
};
|
|
|
|
selection.save_to_clipboard = true;
|
|
|
|
live_config_reload = true;
|
|
|
|
mouse.hide_when_typing = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|