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)


Posted by 무세1
,