1. 설치
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2. 설치
brew install zsh
3. 설치
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)
4. ~/.zshrc
ZSH_THEME="agnoster"
prompt_context() {
# Custom (Random emoji)
git_emoji=("🎨" "⚡️" "🔥" "🐛" "✨" "🚨")
RAND_EMOJI_N=$(( $RANDOM % ${#git_emoji[@]} + 1))
prompt_segment black default "${git_emoji[$RAND_EMOJI_N]} "
}
5.
git clone https://github.com/powerline/fonts.git
cd fonts
./install.sh
6. Ubuntu Mono 폰트 설정
'개발 이야기 > 프론트엔드 개발자' 카테고리의 다른 글
NX를 이용한 모노레포 개발 (0) | 2022.05.04 |
---|---|
머지된 브랜치 삭제 (1) | 2022.04.06 |
유용한 크롬 & VSCODE 확장 도구들 (1) | 2020.09.02 |
프론트엔드 성능 최적화 (0) | 2020.08.24 |
VSync 이야기 (0) | 2020.08.24 |