1
0
mirror of https://github.com/akelge/vim synced 2025-12-14 22:35:13 +00:00

Clean up, speed up, precompile

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

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'