Update OSX aliases

This commit is contained in:
Lynda Wang 2020-08-02 14:03:26 -04:00 committed by Michael Campagnaro
parent 12018878a4
commit 68239029dd
2 changed files with 3 additions and 2 deletions

View File

@ -386,9 +386,9 @@ if [[ $platform == 'Linux' ]]; then
elif [[ $platform == 'Darwin' ]]; then
alias l='ls -laG'
alias ls='ls -laG'
alias ll='ls -lG'
# TODO add a trash alias for trash-cli? or brew install rmtrash
alias trash='rmtrash'
alias tt='rmtrash'
elif [[ "${platform,,}" == *'ming'* ]]; then # convert to lowercase then compare with wildcard
alias python='winpty python.exe'

View File

@ -46,6 +46,7 @@ brew_packages=(
'vim'
'sdl'
'tree'
'rmtrash'
)
brew tap homebrew/core
for package in "${brew_packages[@]}"