From 5081f01fc2975ceda953fc242b60b5cd8be79cae Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 29 Jul 2024 07:24:28 +0200 Subject: [PATCH] feat(zsh): enable eza icons --- shell/eza.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell/eza.nix b/shell/eza.nix index 7422f80..7d21b61 100644 --- a/shell/eza.nix +++ b/shell/eza.nix @@ -2,7 +2,9 @@ { programs.eza = { enable = true; + enableZshIntegration = true; git = true; + icons = true; extraOptions = [ "--group-directories-first" ]; }; }