mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
12 lines
169 B
Bash
12 lines
169 B
Bash
#
|
|
# Scaleway CLI setup.
|
|
#
|
|
|
|
if command-exists scw; then
|
|
_scw() {
|
|
unset -f _scw
|
|
eval "$(command scw autocomplete script shell=zsh)"
|
|
}
|
|
compctl -K _scw scw
|
|
fi
|