# add to ~/.zshrc# enables suggestions based on previously used commandssource/opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh
# add to ~/.zshrc# enables command completion for aws cli (tab to complete)# make sure path to aws_completer is correctautoloadbashcompinit&&bashcompinitautoload-Uzcompinit&&compinitcomplete-C'/usr/local/bin/aws_completer'aws
# add to ~/.zsh# updates shell colors, format, and displays git branchparse_git_branch() {gitbranch2>/dev/null|sed-n-e's/^\* \(.*\)/[\1]/p'}# color #s found here: https://misc.flogisoft.com/bash/tip_colors_and_formattingCOLOR_DEF='%f'COLOR_USR='%F{243}'COLOR_DIR='%F{197}'COLOR_GIT='%F{39}'NEWLINE=$'\n'setoptPROMPT_SUBSTexport PROMPT='${COLOR_USR}%n@%M ${COLOR_DIR}%d ${COLOR_GIT}$(parse_git_branch)${COLOR_DEF}${NEWLINE}%% '