Load completion for Carton

This commit is contained in:
Sebastian Wiesner 2013-05-17 17:19:42 +02:00
parent 7e33c7189e
commit bde5149c7b
1 changed files with 5 additions and 0 deletions

View File

@ -12,4 +12,9 @@ if [[ -d "$HOME/.carton" ]]; then
alias cau='carton update'
alias caI='carton init'
alias cae='carton exec'
local completion="$HOME/.carton/etc/carton_completion.zsh"
if [[ -e "${completion}" ]]; then
source "${completion}"
fi
fi