fix(bash): pipe ls with colors to less for lll (#82)

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/82
This commit is contained in:
Victor Westerlund 2025-12-21 11:40:09 +01:00
parent ee7749c200
commit efb5aa0fac

View file

@ -90,7 +90,7 @@ lll () {
return 1 return 1
fi fi
ls -lah $target | less ls -lah --color=always $target | less -R
} }
.. () { .. () {