From 8c13f018b9d05e306218a5e506697ab14b341944 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Fri, 22 Mar 2024 13:41:10 -0400 Subject: [PATCH] home-manager: added new alacritty config --- home/aly.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/home/aly.nix b/home/aly.nix index 85f8b580..0d394997 100644 --- a/home/aly.nix +++ b/home/aly.nix @@ -30,17 +30,23 @@ programs.alacritty = { enable = true; settings = { + colors = { + primary = { + foreground = "#fafafa"; + background = "#000000"; + }; + draw_bold_text_with_bright_colors = true; + }; font = { normal = { family = "DroidSansM Nerd Font Mono"; style = "Regular"; }; size = 11; }; selection.save_to_clipboard = true; window = { - # blur = true; - decorations = "None"; + blur = true; + # decorations = "None"; dynamic_padding = true; opacity = 0.8; - startup_mode = "Maximized"; }; }; };