1
0
mirror of https://github.com/akelge/zsh synced 2025-07-04 05:29:06 +00:00

Cleanup... for now

This commit is contained in:
2021-10-28 10:46:27 +02:00
parent 7023dd4906
commit 1487224aaa
4 changed files with 2 additions and 58 deletions

View File

@ -1,19 +0,0 @@
# 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 :