feat: alacritty config
This commit is contained in:
parent
b6c5fa9ca8
commit
e32ad10fea
1 changed files with 34 additions and 1 deletions
|
@ -425,7 +425,40 @@
|
|||
'';
|
||||
};
|
||||
|
||||
programs.alacritty.enable = true;
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
window = {
|
||||
dimensions = {
|
||||
columns = 0;
|
||||
lines = 0;
|
||||
};
|
||||
};
|
||||
colors.bright = {
|
||||
blue = "0xb399ff";
|
||||
cyan = "0x99e6ff";
|
||||
green = "0x89f5a4";
|
||||
magenta = "0xe699ff";
|
||||
red = "0xff809f";
|
||||
white = "0xffffff";
|
||||
yellow = "0xffffb3";
|
||||
};
|
||||
colors.normal = {
|
||||
black = "0x000000";
|
||||
blue = "0x794dff";
|
||||
cyan = "0x33ccff";
|
||||
green = "0x13ec49";
|
||||
magenta = "0xcc33ff";
|
||||
red = "0xff0040";
|
||||
white = "0xffffff";
|
||||
yellow = "0xffff4d";
|
||||
};
|
||||
colors.primary = {
|
||||
background = "0x000000";
|
||||
foreground = "0xffffff";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.mako = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue