This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-07-20 11:24:54 -04:00
|
|
|
alias dotfiles='git --git-dir=$HOME/dotfiles.git/ --work-tree=$HOME'
|
2018-08-16 11:37:49 -04:00
|
|
|
alias nokeyssh="ssh -o PubkeyAuthentication=no"
|
2019-01-22 09:14:26 -05:00
|
|
|
UNAME_S=`uname -s`
|
|
|
|
if [[ "$UNAME_S" == "Linux" || "$UNAME_S" == "CYGWIN_NT-10.0" ]] ; then
|
2018-09-17 21:18:35 -04:00
|
|
|
alias ls="ls --color=auto"
|
|
|
|
fi
|
2019-10-23 16:17:32 -04:00
|
|
|
if [[ "$UNAME_S" == "BSD" || "$UNAME_S" == "Darwin" ]] ; then
|
2018-09-17 21:18:35 -04:00
|
|
|
alias ls="ls -G"
|
|
|
|
fi
|