diff --git a/profiles/develop/zsh/default.nix b/profiles/develop/zsh/default.nix index 9524ce73..17187ca4 100644 --- a/profiles/develop/zsh/default.nix +++ b/profiles/develop/zsh/default.nix @@ -33,9 +33,11 @@ in df = "df -h"; du = "du -h"; - ls = "${pkgs.exa}/bin/exa"; + ls = "exa"; l = "ls -lhg --git"; la = "l -a"; + t = "l -T"; + ta = "la -T"; ps = "${pkgs.procs}/bin/procs"; diff --git a/profiles/develop/zsh/functions/exa b/profiles/develop/zsh/functions/exa index 60090afa..0e2be3e7 100644 --- a/profiles/develop/zsh/functions/exa +++ b/profiles/develop/zsh/functions/exa @@ -1,6 +1,6 @@ # pipe exa into PAGER with colors if [[ -t 1 && -n $PAGER ]]; then - @exa@/bin/exa --color always $@ | $PAGER + @exa@/bin/exa --color=always $@ | $PAGER else @exa@/bin/exa $@ fi