From 41f1c6942b07507c7e1e0eac4aee8ecbfe3f1b84 Mon Sep 17 00:00:00 2001 From: Dawid Loranc Date: Thu, 19 Oct 2023 13:15:53 +0200 Subject: [PATCH] fix: Replace exa with eza --- README.md | 2 +- aliases.sh | 5 ++--- setup.sh | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ef8add3..9cfa7d2 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Update repo with `git pull` and execute `./setup.sh` again. ## Tools - `bat` - better cat (aliased to `cat`) -- `exa` - better ls (aliased to `ll` and `lst` for tree view which is missing for OSX) +- `eza` - better ls (aliased to `ll` and `lst` for tree view which is missing for OSX) - `hwatch` - missing `watch` for OSX and better watch overall - `git-delta` - better `git diff` (configured via `.gitconfig`) diff --git a/aliases.sh b/aliases.sh index d11e02c..742a2a7 100644 --- a/aliases.sh +++ b/aliases.sh @@ -1,6 +1,5 @@ #!/bin/sh -alias lst='exa -T' -alias ll='exa -lha -bhl --git --group-directories-first' +alias lst='eza -T' +alias ll='eza -lha -bhl --git --group-directories-first' alias cat='bat -p' - diff --git a/setup.sh b/setup.sh index 5b414ea..e835953 100755 --- a/setup.sh +++ b/setup.sh @@ -28,7 +28,7 @@ fi # install cargo packages echo "Installing cargo packages..." -cargo install git-delta exa bat hwatch +cargo install git-delta eza bat hwatch echo "Linking configuration files..." ln -f -s "$(pwd)/aliases.sh" ~/.selleo/aliases.sh