move things around
This commit is contained in:
parent
63b9b81ebe
commit
c9f0f903a3
26 changed files with 9 additions and 8 deletions
33
users/rin/alacritty.nix
Normal file
33
users/rin/alacritty.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ config, ... }: {
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
scrolling = {
|
||||
history = 10000;
|
||||
multiplier = 3;
|
||||
};
|
||||
font = {
|
||||
normal = {
|
||||
family = "CascadiaCode";
|
||||
style = "Regular";
|
||||
};
|
||||
size = 8.6;
|
||||
};
|
||||
window = {
|
||||
dynamic_title = true;
|
||||
padding = {
|
||||
x = 5;
|
||||
y = 0;
|
||||
};
|
||||
};
|
||||
mouse = {
|
||||
url.launcher.program = "xdg-open";
|
||||
modifiers = "Control";
|
||||
};
|
||||
|
||||
background_opacity = 0.8;
|
||||
draw_bold_text_with_bright_colors = true;
|
||||
live_config_reload = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue