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"; dock.orientation = "right";
NSGlobalDomain.InitialKeyRepeat = 14; NSGlobalDomain.InitialKeyRepeat = 14;
NSGlobalDomain.KeyRepeat = 1; NSGlobalDomain.KeyRepeat = 1;
NSGlobalDomain.AppleFontSmoothing = 1;
finder.AppleShowAllExtensions = true; finder.AppleShowAllExtensions = true;
finder.AppleShowAllFiles = true; finder.AppleShowAllFiles = true;
finder.CreateDesktop = false; finder.CreateDesktop = false;

View file

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