2023-10-17 20:56:27 -04:00
|
|
|
# Home-manager module
|
|
|
|
|
2023-10-23 17:36:22 -04:00
|
|
|
{ config, ... }: {
|
2023-10-17 20:56:27 -04:00
|
|
|
programs.alacritty = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
env = {
|
|
|
|
POKE = "true";
|
2023-10-23 17:36:22 -04:00
|
|
|
|
|
|
|
# fix wrong colors in tmux
|
|
|
|
TERM = "xterm-256color";
|
2023-10-17 20:56:27 -04:00
|
|
|
};
|
|
|
|
|
2023-10-18 12:24:44 -04:00
|
|
|
key_bindings = [
|
|
|
|
{
|
|
|
|
key = "Return";
|
|
|
|
mods = "Control|Shift";
|
|
|
|
action = "SpawnNewInstance";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2023-10-17 20:56:27 -04:00
|
|
|
window = {
|
|
|
|
padding = {
|
|
|
|
x = 0;
|
|
|
|
y = 10;
|
|
|
|
};
|
|
|
|
|
|
|
|
opacity = 0.8;
|
|
|
|
};
|
|
|
|
|
|
|
|
font = {
|
|
|
|
normal = {
|
|
|
|
family = "JetBrainsMono Nerd Font";
|
|
|
|
style = "Regular";
|
|
|
|
};
|
|
|
|
bold = {
|
|
|
|
family = "JetBrainsMono Nerd Font";
|
|
|
|
style = "Bold";
|
|
|
|
};
|
|
|
|
italic = {
|
|
|
|
family = "JetBrainsMono Nerd Font";
|
|
|
|
style = "Italic";
|
|
|
|
};
|
2023-10-18 13:50:00 -04:00
|
|
|
size = config.services.hostvars.fontSize;
|
2023-10-17 20:56:27 -04:00
|
|
|
};
|
|
|
|
|
2023-10-18 12:24:44 -04:00
|
|
|
# https://github.com/dracula/alacritty/blob/05faff15c0158712be87d200081633d9f4850a7d/dracula.yml
|
2023-10-17 20:56:27 -04:00
|
|
|
colors = {
|
|
|
|
primary = {
|
|
|
|
background = "#282a36";
|
|
|
|
foreground = "#f8f8f2";
|
|
|
|
bright_foreground = "#ffffff";
|
|
|
|
};
|
|
|
|
cursor = {
|
|
|
|
text = "CellBackground";
|
|
|
|
cursor = "CellForeground";
|
|
|
|
};
|
|
|
|
vi_mode_cursor = {
|
|
|
|
text = "CellBackground";
|
|
|
|
cursor = "CellForeground";
|
|
|
|
};
|
|
|
|
search = {
|
|
|
|
matches = {
|
|
|
|
foreground = "#44475a";
|
|
|
|
background = "#50fa7b";
|
|
|
|
};
|
|
|
|
focused_match = {
|
|
|
|
foreground = "#44475a";
|
|
|
|
background = "#ffb86c";
|
|
|
|
};
|
|
|
|
footer_bar = {
|
|
|
|
background = "#282a36";
|
|
|
|
foreground = "#f8f8f2";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
hints = {
|
|
|
|
start = {
|
|
|
|
foreground = "#282a36";
|
|
|
|
background = "#f1fa8c";
|
|
|
|
};
|
|
|
|
end = {
|
|
|
|
foreground = "#f1fa8c";
|
|
|
|
background = "#282a36";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
line_indicator = {
|
|
|
|
foreground = "None";
|
|
|
|
background = "None";
|
|
|
|
};
|
|
|
|
selection = {
|
|
|
|
text = "CellForeground";
|
|
|
|
background = "#44475a";
|
|
|
|
};
|
|
|
|
normal = {
|
|
|
|
black = "#21222c";
|
|
|
|
red = "#ff5555";
|
|
|
|
green = "#50fa7b";
|
|
|
|
yellow = "#f1fa8c";
|
|
|
|
blue = "#bd93f9";
|
|
|
|
magenta = "#ff79c6";
|
|
|
|
cyan = "#8be9fd";
|
|
|
|
white = "#f8f8f2";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|