Clean up, speed up, precompile

This commit is contained in:
Andrea Mistrali 2014-12-22 14:41:08 +00:00
parent 5c9b609951
commit 5ac982467f
14 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,4 @@
fpath=(`dirname $0`/prompts $fpath)
fpath=($0:h/prompts $fpath)
autoload -U promptinit;promptinit

View File

@ -1,8 +1,11 @@
# Linux
if [ -f /etc/dir_colors ]; then
eval `dircolors /etc/dir_colors`
else
eval `dircolors`
if which dircolors > /dev/null; then
if [ -f /etc/dir_colors ]; then
eval `dircolors /etc/dir_colors`
else
eval `dircolors`
fi
fi
alias ls='LANG=C ls -F --color=auto --group-directories-first'

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.