alacritty conf

This commit is contained in:
2024-03-31 23:44:56 +01:00
parent 179db8fd5a
commit 405e1fd000
+29 -20
View File
@@ -4,14 +4,23 @@
programs.alacritty = { programs.alacritty = {
enable = true; enable = true;
settings = { settings = {
live_config_reload = false;
font = { font = {
normal.family = "FiraCodeNerdFontMono"; normal.family = "FiraCodeNerdFontMono";
size = 16; size = 16;
}; };
window = { window = {
lines = 20; dimensions = {
columns = 200; lines = 20;
opacity = 0.40; columns = 200;
};
padding = {
x = 8;
y = 8;
};
decorations = "None";
opacity = 0.80;
blur = true;
}; };
colors = { colors = {
primary = { primary = {
@@ -19,28 +28,28 @@
foreground = "#cccccc"; foreground = "#cccccc";
}; };
normal = { normal = {
black = "0x0c0c0c"; black = "#0c0c0c";
red = "0xc50f1f"; red = "#c50f1f";
green = "0x13a10e"; green = "#13a10e";
yellow = "0xc19c00"; yellow = "#c19c00";
blue = "0x0037da"; blue = "#0037da";
magenta = "0x881798"; magenta = "#881798";
cyan = "0x3a96dd"; cyan = "#3a96dd";
white = "0xcccccc"; white = "#cccccc";
}; };
bright = { bright = {
black = "0x767676"; black = "#767676";
red = "0xe74856"; red = "#e74856";
green = "0x16c60c"; green = "#16c60c";
yellow = "0xf9f1a5"; yellow = "#f9f1a5";
blue = "0x3b78ff"; blue = "#3b78ff";
magenta = "0xb4009e"; magenta = "#b4009e";
cyan = "0x61d6d6"; cyan = "#61d6d6";
white = "0xf2f2f2"; white = "#f2f2f2";
}; };
draw_bold_text_with_bright_colors = true;
}; };
draw_bold_text_with_bright_colors = true;
}; };
}; };
} }