Skip to content

Commit

Permalink
Replace exa with eza
Browse files Browse the repository at this point in the history
`exa` is no longer maintained: ogham/exa#1243
  • Loading branch information
samueljsb committed Feb 3, 2024
1 parent 1f7b088 commit 9bbcf90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -88,7 +88,7 @@ def test_bin(session: nox.Session) -> None:

BREW_PACKAGES = (
'bat',
'exa',
'eza',
'fzf',
'less',
'cantino/mcfly/mcfly',
Expand Down
6 changes: 3 additions & 3 deletions templates/.zshrc
Expand Up @@ -256,10 +256,10 @@ alias reload!='. ~/.zshrc'

alias local-ip="ifconfig | grep 'inet ' | grep -v 127.0.0.1 | awk '{print \$2}'"

# ls & exa
# ls & eza
export LSCOLORS=gxfxhxdxcxegedabagacad
if [ -x "$(command -v exa)" ]; then
alias ll="exa --long --header --group"
if [ -x "$(command -v eza)" ]; then
alias ll="eza --long --header --group"
alias la="ll --all"
else
alias ll='ls -lh'
Expand Down

0 comments on commit 9bbcf90

Please sign in to comment.