2013-09-04 20:26:10 -07:00
|
|
|
# .rc.darwin
|
|
|
|
# vim: ft=zsh
|
|
|
|
# Interactive shell setup for Darwin systems
|
|
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
|
|
|
|
|
|
|
|
alias acls='command ls -le'
|
|
|
|
|
|
|
|
# These things might have been installed by Homebrew, and I like the GNU versions better.
|
|
|
|
binary_exists gdircolors && alias dircolors='gdircolors'
|
|
|
|
binary_exists gfind && alias find='gfind'
|
|
|
|
binary_exists gnuindent && alias indent='gnuindent'
|
|
|
|
|
|
|
|
if binary_exists gls; then
|
|
|
|
configure_ls `which gls`
|
|
|
|
fi
|
2014-05-22 19:18:14 -07:00
|
|
|
|
|
|
|
# ldd doesn't exist on OS X, but otool -L does the same thing.
|
|
|
|
alias ldd='otool -L'
|