zsh 관련 자료
zsh 및 oh my zsh 관련 자료
Oh my zsh 설치
zsh와 git 설치
yum install git zsh -y
sudo apt install git zsh -y
curl 로 oh my zsh 설치
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
설정
- 초기화 파일(~/.zshrc)
plugin
# plugins=(git bundler osx rake ruby) plugins=(git bundler laravel rake ruby)
theme
ZSH_THEME="robbyrussell"
aws 에서 zsh 사용시 comdef 에러
로그인시마다 아래 에러 발생
complete:13: command not found: compdef
aws-cli 의 문제이며 아래의 명령어로 workaround 처리
sudo chmod a-r /etc/profile.d/aws-cli.sh
참고