1
0
mirror of https://github.com/akelge/vim synced 2025-08-18 00:18:51 +00:00

Removed useless or duplicate files, speedup others

This commit is contained in:
2013-01-02 14:49:53 +00:00
parent a88f7828aa
commit f706030ca5
7 changed files with 52 additions and 76 deletions

View File

@ -0,0 +1,19 @@
# Core Utils
which gcp > /dev/null
if [ $? -eq 0 ]; then
if [ -f /etc/zsh/gdircolors ]; then
eval `gdircolors /etc/zsh/gdircolors`
else
eval `gdircolors`
fi
#alias ls='gls --color -F' # OSX ls is better (supports extended attributes)
alias ll='ls -l'
alias la='ls -a'
alias cp='gcp'
alias mv='gmv'
alias rm='grm'
alias du='gdu'
alias df='gdf -a'
fi
# vim: set ts=4 sw=4 tw=0 ft=zsh :