Tweak Alacritty settings

This commit is contained in:
Tobias Ostner 2023-09-19 21:17:56 +02:00
parent cd937b4053
commit 5a8240bc50
2 changed files with 13 additions and 3 deletions

View file

@ -62,6 +62,7 @@
dock.orientation = "right";
NSGlobalDomain.InitialKeyRepeat = 14;
NSGlobalDomain.KeyRepeat = 1;
NSGlobalDomain.AppleFontSmoothing = 1;
finder.AppleShowAllExtensions = true;
finder.AppleShowAllFiles = true;
finder.CreateDesktop = false;

View file

@ -5,7 +5,7 @@
home.packages = with pkgs; [
raycast
ripgrep
fd
tree
curl
less
];
@ -36,7 +36,16 @@
};
programs.alacritty = {
enable = true;
settings.font.size = 14;
settings.font.normal.family = "Iosevka Comfy";
settings.font = {
size = 14;
normal.family = "Iosevka Comfy";
normal.style = "Regular";
};
settings.window = {
padding.x = 18;
padding.y = 18;
opacity = 0.85;
decorations = "Buttonless";
};
};
}