Windows alias changes

This commit is contained in:
Michael Campagnaro 2017-03-27 14:22:43 -04:00
parent c4cfb0ce91
commit ea7e3ab69b

View File

@ -20,9 +20,12 @@ elif [[ $platform == 'Darwin' ]]; then
alias ls='ls -laG'
alias ll='ls -lG'
else
elif [[ "${platform,,}" == *'ming'* ]]; then # convert to lowercase then compare with wildcard
alias python='winpty python.exe'
alias python3='winpty python.exe'
alias l='ls -ahg --color'
alias ls='ls -ahg --color'
fi
alias c='cd'