From 9c0ccc8643b79121e900494f60f71bf0568c5f32 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Sat, 21 Dec 2024 15:15:22 -0600 Subject: [PATCH] alacritty: config++ --- home/modules/gui/alacritty.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/home/modules/gui/alacritty.nix b/home/modules/gui/alacritty.nix index c9c7461..93968e2 100644 --- a/home/modules/gui/alacritty.nix +++ b/home/modules/gui/alacritty.nix @@ -6,12 +6,18 @@ enable = true; package = (config.lib.nixGL.wrap pkgs.alacritty); settings = { - font = { - normal = { - family = "BerkeleyMono Nerd Font Mono"; - style = "Bold Italic"; + bell = { + animation = "EaseOutCirc"; + duration = 200; + color = "#c2985b"; + }; + cursor = { + style = { + shape = "Beam"; + blinking = "On"; }; }; + font = { normal = { family = "BerkeleyMono Nerd Font Mono"; }; }; general.import = [ pkgs.alacritty-theme.tokyo_night_enhanced ]; terminal = { shell.program = "${pkgs.fish}/bin/fish"; }; window = {