1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-08 16:30:40 +01:00
Files
oh-my-zsh/plugins/pew/pew.plugin.zsh
Ruben Di Battista a48a5ba291 Add plugin for pew
2021-06-20 10:46:45 +02:00

11 lines
284 B
Bash

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