diff options
Diffstat (limited to 'home/modules/alacritty.nix')
-rw-r--r-- | home/modules/alacritty.nix | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/home/modules/alacritty.nix b/home/modules/alacritty.nix index ba26360fe924..34ccf47f18e4 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; + }; }; }; }; |