Tweak Alacritty settings
This commit is contained in:
parent
cd937b4053
commit
5a8240bc50
2 changed files with 13 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue