Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Replace exa with eza #14

Merged
merged 1 commit into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`)

Expand Down
5 changes: 2 additions & 3 deletions aliases.sh
Original file line number Diff line number Diff line change
@@ -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'

2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down