ohmyzsh/plugins/pew/pew.plugin.zsh

11 lines
284 B
Bash
Raw Normal View History

2019-09-28 16:22:56 +02:00
if type pew > /dev/null; then
# Use the completion already shipped by the python package
shell_config_path=$(dirname $(pew shell_config))
fpath+=$shell_config_path
compinit
else
echo "`pew` command seems to not exist. Check that it is available in your PATH"
fi