|
#!/usr/bin/env -S bash -c 'echo "Not a user script. source(aka .) only"'
|
|
|
|
if is_cmd lsd; then
|
|
|
|
alias _ls="$(command -v lsd) "
|
|
alias lg="ll --git "
|
|
|
|
[[ -n "${DBG}" ]] && echo "assigned lsd as ls alias."
|
|
|
|
fi
|
|
|
|
# vim: set ft=sh expandtab tabstop=4 shiftwidth=4:
|