Oh My Zsh! 설치
기본으로 설치되어있는 shell, dash와 같이 zsh도 shell의 한 종류이다.
zsh --version 을 통해 설치를 확인할 수 있으며,
chsh -s `which zsh` 을 통해 해당계정의 기본 shell을 변경할 수 있다.
echo $SHELL 으로 변경 확인 가능하다.
zsh 설치방법 https://www.zsh.org/
에서 Distribution Site에서
파일을 다운받음
예) https://sourceforge.net/projects/zsh/files/
에서 https://sourceforge.net/projects/zsh/files/latest/download 을 다운받아
tar xf download로 압축을 푼다.
후에 안의 소스코드에서 ./configure && make && make install 을 차례로 진행
oh my zsh은
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
을 통해 설치가 가능하다.(git 설치 필요)
~/.zshrc에서
THEME="rubbyrussell"
THEME="agnoster"
를 변경하여 테마를 수정할 수 있다.
agnoster 사용 시에는 d2Coding과 같은 글꼴을 사용하면 글자가 깨지지 않는다.
>>>> oh-my-zsh git 느린거 설정, add를 하면 빨라짐
git config -l
git config --unset oh-my-zsh.hide-status
git config --unset oh-my-zsh.hide-dirty
git config --add oh-my-zsh.hide-status 1
git config --add oh-my-zsh.hide-dirty 1