Skip to content

Commit

Permalink
docs: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwelbm committed Oct 24, 2022
1 parent 640205c commit 972e414
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,13 @@ $ make cross-build
### Depedencies zsh
```shell
apt install zsh-autosuggestions # install
echo "autoload -U compinit; compinit" >> ~/.zshrc # add
# you need to install zsh-autosuggestions
# Examples
apt install zsh-autosuggestions
# or
brew install zsh-autosuggestions

echo "autoload -U compinit; compinit" >> ~/.zshrc # you only need to run this once

# linux
azioncli completion zsh > "${fpath[1]}/_azioncli" # after installing azioncli
Expand All @@ -60,7 +65,11 @@ azioncli completion zsh > $(brew --prefix)/share/zsh/site-functions/_azioncli #

### Depedencies bash
```shell
apt install bash-completion # install
# you need to install bash-completion
# Examples
apt install bash-completion
# or
brew install bash-completion

# linux
azioncli completion bash > /etc/bash_completion.d/azioncli # after installing azioncli
Expand Down

0 comments on commit 972e414

Please sign in to comment.