~edwardloveall/dotfiles

7c14207e42405e513b441ead7e97b3ddca39fecf — Edward Loveall 1 year, 1 month ago 291a707
Pass -a to exa

With my previous `ll` alias, I passed the -a flag to show all files
including hidden. I missed seeing those so I'm adding it back.
1 files changed, 1 insertions(+), 1 deletions(-)

M zsh/dot-functions
M zsh/dot-functions => zsh/dot-functions +1 -1
@@ 6,7 6,7 @@ function path {
# use exa instead of ls if available
function ll {
  if type exa > /dev/null; then
    exa -l "$@"
    exa -la "$@"
  else
    ls -lah "$@"
  fi