tweak(global): replace ls with exa

This commit is contained in:
Infinidoge 2023-03-13 18:55:19 -04:00
parent 2aab81a5fd
commit 6f8c048cf5
2 changed files with 10 additions and 1 deletions

View file

@ -16,6 +16,7 @@
direnv
dnsutils
dosfstools
exa
exfat # Windows drives
fd
ffmpeg

View file

@ -9,6 +9,15 @@ in
"...." = "cd ../../..";
"....." = "cd ../../../..";
# ls
ls = "exa";
la = "ls -1";
l = "ls --long --all --no-permissions --no-user --git --icons";
lt = "l --tree";
ll = "ls --long --all --group";
llt = "ll --tree";
le = "ll --extended";
# git
g = "git";
@ -43,7 +52,6 @@ in
jtl = "journalctl";
# Miscellaneous
ll = "ls -al";
dd = "dd status=progress";
cat = "bat --paging=never";