mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-28 00:30:07 +00:00
10 lines
312 B
Bash
10 lines
312 B
Bash
|
if ! command -v scw &> /dev/null; then
|
||
|
echo "[oh-my-zsh] scw command not found, please install it from https://github.com/scaleway/scaleway-cli"
|
||
|
return
|
||
|
fi
|
||
|
|
||
|
# Load scw autocompletion if autocompletion not already loaded
|
||
|
if ! command -v _scw &> /dev/null; then
|
||
|
eval "$(scw autocomplete script shell=zsh)"
|
||
|
fi
|