This commit is contained in:
Gökçen Eraslan 2015-07-29 16:18:42 +00:00
commit 65c9d6c97a

View file

@ -6,6 +6,10 @@ if [ $commands[fasd] ]; then # check if fasd is installed
source "$fasd_cache" source "$fasd_cache"
unset fasd_cache unset fasd_cache
alias v='f -e vim' alias v='f -e vim'
alias o='a -e open'
fi
if [[ $('uname') == 'Linux' ]] && [ $commands[xdg-open] ]; then
alias o='a -e xdg-open'
elif [[ $('uname') == 'Darwin' ]]; then
alias o='a -e open'
fi
fi