Created
March 4, 2019 02:11
-
-
Save terashim/f9d3bdf85bcae548b793355394f359a9 to your computer and use it in GitHub Desktop.
fishシェルにdocker, docker-compose, kubectlのコマンド補完をインストールする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p ~/.config/fish/completions | |
# docker | |
curl https://raw.githubusercontent.com/docker/docker-ce/master/components/cli/contrib/completion/fish/docker.fish -o ~/.config/fish/completions/docker.fish | |
# docker-compose | |
curl https://raw.githubusercontent.com/docker/compose/master/contrib/completion/fish/docker-compose.fish -o ~/.config/fish/completions/docker-compose.fish | |
# kubectl (非公式) | |
curl https://raw.githubusercontent.com/evanlucas/fish-kubectl-completions/master/completions/kubectl.fish -o ~/.config/fish/completions/kubectl.fish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment