시작하면서 m1 맥으로 이사하면서 모두 초기화 하고 다시 설정하는데 tab키를 눌러도 반응이 없어서 찾아보니 zsh-completions이 필요했습니다. 예전 맥에서도 인스톨을 했는지 기억도 없는데 ㅠㅠ 인스톨 순서를 기록합니다. zsh-completions install brew install zsh-completions brew를 이용해 인스톨 했습니다. ==> Caveats To activate these completions, add the following to your .zshrc: if type brew &>/dev/null; then FPATH=$(brew --prefix)/share/zsh-completions:$FPATH autoload -Uz compinit compinit fi Yo..