From 6da05cfecffcf9d2c8738dd0f8609ef7fa7d99dd Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 9 Apr 2024 18:11:47 -0400 Subject: [PATCH] global/shell: fix ls aliases with icons --- modules/global/shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/global/shell.nix b/modules/global/shell.nix index c4308f7..546236a 100644 --- a/modules/global/shell.nix +++ b/modules/global/shell.nix @@ -20,14 +20,14 @@ in # ls ls = "${lib.getExe pkgs.eza}"; # HACK: Bypasses PATH so it works in nix develop shell - la = "ls --long --no-filesize --no-permissions --no-user --git --icons"; + la = "ls --long --no-filesize --no-permissions --no-user --icons --git"; lat = "la --tree -I .git"; l = "la --all"; lt = "l --tree -I .git"; le = "l --extended"; lg = "l --git-ignore"; lgt = "lt --git-ignore"; - ll = "ls --long --all --group --icons"; + ll = "ls --long --all --icons --group"; llt = "ll --tree -I .git"; lle = "ll --extended"; llg = "ll --git-ignore";