DEV Community

jonjpbm
jonjpbm

Posted on

AWS Auto Tab Completion When Using Oh My Zsh

I installed AWSCLI with homebrew (you don't have to if you don't want)

Adding to your .zshrc

Add aws to you plugins for oh my zsh
Something like this:
plugins=(terraform git aws) NOTE: Terraform and git are there for example.

Then I put this at the bottom.

#Auto tab complete for AWS Cli
export PATH=usr/local/bin/aws_completer:$PATH
autoload -Uz compinit && compinit
Enter fullscreen mode Exit fullscreen mode

Top comments (0)