Mac에서 터미널 설정하기.
iTerm2 다운로드
zsh 설치하기
brew install zsh
테마를 default인 robbyrussell에서 agnoster로 변경하기
먼저 Powerline Font 설치
cd $Home
cd Downloads
git clone https://github.com/powerline/fonts powerline-fonts
cd powerline-fonts
./install.sh
~/.zshrc 열어서 테마 변경
ZSH_THEME="agnoster"
터미널 설정 변경
iTerms -> Preferences -> Profiles -> Default -> Text 로 들어가서
Change Font 클릭
고정폭 , Source Code Pro for Powerline , 일반체 , 12
syntax highlight plugin 설치
cd ~/.oh-my-zsh/custom/plugins
git clone git://github.com/zsh-users/zsh-syntax-highlighting.git
~/.zshrc를 열어서 플러긴 변경
plugins=(git zsh-syntax-highlighting)
'맥북' 카테고리의 다른 글
watch command 사용하기 (0) | 2018.11.15 |
---|---|
brew 버전별 설치 (0) | 2018.07.06 |
Outlook Mac에서 패스워드 계속 물어볼때 (0) | 2017.09.19 |
MacOS 10.12 업데이트후 homebrew 설치 문제 (0) | 2017.09.07 |
xcrun: error: invalid active developer path 오류시 (6) | 2016.07.11 |