2023-11-12 13:24:09 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2023-08-07 09:19:09 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
programs.alacritty = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
window = {
|
|
|
|
dynamic_title = true;
|
2023-09-15 07:13:52 +01:00
|
|
|
padding = {
|
|
|
|
x = 10;
|
|
|
|
y = 10;
|
|
|
|
};
|
|
|
|
decorations = "none";
|
2023-11-12 13:24:09 +00:00
|
|
|
opacity = 0.8;
|
|
|
|
};
|
|
|
|
font = {
|
|
|
|
normal.family = "FiraMono Nerd Font";
|
|
|
|
size = 14.0;
|
2023-08-07 09:19:09 +01:00
|
|
|
};
|
|
|
|
selection.save_to_clipboard = true;
|
|
|
|
live_config_reload = true;
|
|
|
|
mouse.hide_when_typing = true;
|
2023-11-12 13:24:09 +00:00
|
|
|
colors = {
|
|
|
|
primary = {
|
|
|
|
background = "#1a1b26";
|
|
|
|
foreground = "#c0caf5";
|
|
|
|
};
|
|
|
|
normal = {
|
|
|
|
black = "#15161e";
|
|
|
|
red = "#f7768e";
|
|
|
|
green = "#9ece6a";
|
|
|
|
yellow = "#e0af68";
|
|
|
|
blue = "#7aa2f7";
|
|
|
|
magenta = "#bb9af7";
|
|
|
|
cyan = "#7dcfff";
|
|
|
|
white = "#a9b1d6";
|
|
|
|
};
|
|
|
|
bright = {
|
|
|
|
black = "#414868";
|
|
|
|
red = "#f7768e";
|
|
|
|
green = "#9ece6a";
|
|
|
|
yellow = "#e0af68";
|
|
|
|
blue = "#7aa2f7";
|
|
|
|
magenta = "#bb9af7";
|
|
|
|
cyan = "#7dcfff";
|
|
|
|
white = "#c0caf5";
|
|
|
|
};
|
|
|
|
indexed_colors = [
|
|
|
|
{
|
|
|
|
index = 16;
|
|
|
|
color = "#ff9e64";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
index = 17;
|
|
|
|
color = "#db4b4b";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2023-08-07 09:19:09 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|