Added Aliases for zsh

This commit is contained in:
James Patrick 2019-05-04 01:46:59 -04:00
parent 00a03181fe
commit 22a4e2a76a
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# ls shortcuts.
if [[ $OS_TYPE = darwin* ]] ; then
color_flag="-G"
else
color_flag="--color"
fi
alias ls="ls $color_flag"
alias l="ls -lh $color_flag"
alias la="ls -lha $color_flag"
alias docker="sudo docker"
alias dc="sudo docker-compose"
alias :q="exit"

View File

@ -50,6 +50,10 @@ zplug "${ZDIR}/modules/keybinds/", \
from:local, \
as:plugin
zplug "${ZDIR}/modules/alias/", \
from:local, \
as:plugin
zplug "denysdovhan/spaceship-prompt", \
use:spaceship.zsh, \
from:github, \