]> arthur.barton.de Git - ax-zsh.git/blob - plugins/travis/travis.zshrc
New "travis" plugin
[ax-zsh.git] / plugins / travis / travis.zshrc
1 # AX-ZSH: Alex' Modular ZSH Configuration
2 # travis.zshrc: Setup autocompletion for travis(1).
3
4 # Make sure that "travis(1)" is installed
5 (( $+commands[travis] )) || return
6
7 # Does the user-local completion file exist?
8 [[ -r "$HOME/.travis/travis.sh" ]] && source "$HOME/.travis/travis.sh"
9 return 0