mirror of https://github.com/akelge/zsh
Clean up, speed up, precompile
This commit is contained in:
parent
5c9b609951
commit
5ac982467f
|
@ -1,4 +1,4 @@
|
||||||
fpath=(`dirname $0`/prompts $fpath)
|
fpath=($0:h/prompts $fpath)
|
||||||
|
|
||||||
autoload -U promptinit;promptinit
|
autoload -U promptinit;promptinit
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
# Linux
|
# Linux
|
||||||
if [ -f /etc/dir_colors ]; then
|
|
||||||
eval `dircolors /etc/dir_colors`
|
if which dircolors > /dev/null; then
|
||||||
else
|
if [ -f /etc/dir_colors ]; then
|
||||||
eval `dircolors`
|
eval `dircolors /etc/dir_colors`
|
||||||
|
else
|
||||||
|
eval `dircolors`
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
alias ls='LANG=C ls -F --color=auto --group-directories-first'
|
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.
Loading…
Reference in New Issue