From 2de47035c93590c5ab3d4815e45391ae74c09444 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Tue, 31 Mar 2020 17:10:38 -0400 Subject: fix alacritty bright colors needed to get vim color scheme working as expected --- home/modules/alacritty.nix | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) (limited to 'home/modules/alacritty.nix') diff --git a/home/modules/alacritty.nix b/home/modules/alacritty.nix index ba26360fe9..34ccf47f18 100644 --- a/home/modules/alacritty.nix +++ b/home/modules/alacritty.nix @@ -8,6 +8,9 @@ enable = true; settings = { font.size = 6; + font.normal.family = "Meslo LGSDZ Nerd Font"; + + draw_bold_text_with_bright_colors = false; colors = with import ../common/solarized.nix; rec { # Default colors @@ -29,17 +32,17 @@ }; # Bright colors - bright = normal; - # bright = { - # black = base03; - # red = orange; - # green = base01; - # yellow = base00; - # blue = base0; - # magenta = violet; - # cyan = base1; - # white = base3; - # }; + # bright = normal; + bright = { + black = base03; + red = orange; + green = base01; + yellow = base00; + blue = base0; + magenta = violet; + cyan = base1; + white = base3; + }; }; }; }; -- cgit 1.4.1