forked from bryanl/zshkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
05_ls
21 lines (16 loc) · 798 Bytes
/
05_ls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.sh=01;32:*.csh=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:'
if [[ -x `which gls` ]]; then
alias rls=`which ls`
alias ls='gls -h --color=auto '
fi
if [[ $OSTYPE[1,7] == "freebsd" ]]; then
alias ls="ls -G"
fi
if [[ $OSTYPE[1,6] == "darwin" ]]; then
alias ls="ls -G"
fi
if [[ $OSTYPE[1,5] == "linux" ]]; then
alias ls="ls --color"
eval `dircolors -b ~/.dir_colors`
fi
alias ll="ls -al"