17 lines
452 B
Text
17 lines
452 B
Text
|
# .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
|