Mac zsh
- https://support.apple.com/ko-kr/HT208050
- kevin-smets/iterm2-solarized.md
- Mac OS 터미널에 ZSH 설치하기
- romkatv/powerlevel10k Theme
macOS Catalina부터는 Mac에서 zsh를 기본 로그인 셸 및 대화형 셸로 사용합니다. 이전 버전의 macOS에서도 zsh를 기본 셸로 설정할 수 있습니다.
Oh My ZSH install
# oh0my-zsh install
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# oh-my-zsh install
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
# oh-my-zsh theme install
# custom/themes 아래 설치된다 주의 하자.
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k
# 기존 .bash_profile 를 이용
cd ~
cp .bash_profile .zprofile
zsh theme
# ~/.zshrc
# ZSH_THEME="테마명" agnoster 로 변경
ZSH_THEME="agnoster"
Powerlevel9k font 설치
# clone
git clone https://github.com/powerline/fonts.git /tmp/powerlevel9k-fonts && cd $_
# install
# ^M문자 오류로 인해 실행이 제대로 되지 않을 경우 dos2unix 이용해서 변환하자.
sh ./install.sh
# remove
cd .. && rm -rf /tmp/powerlevel9k-fonts
# vi .zshrc
# powerlevel10k 테마
ZSH_THEME="powerlevel10k/powerlevel10k"
POWERLEVEL9K_MODE="awesome-patched"
iTerm2, Terminal 폰트 변경
command + ,
설정 화면을 오픈한다.Profiles
>Text
탭 >Font
섹션에서Change Font
에서Inconsolata...
,Meslo LG ...
폰트를 선택한다.iTerm2
,Terminal
을 다시 시작한다.powerlevel10k
테마는 신규 설정이 시작된다.
반응형
'os > MAC' 카테고리의 다른 글
mac iTerm2 alt+arrow, alt+backspace shortcuts (0) | 2020.05.01 |
---|---|
아이폰 단축어 (0) | 2020.04.01 |
MAC iterm split window move (0) | 2017.04.27 |
Mac Bash Alias 설정 (0) | 2017.02.06 |
brew permission 에러 (0) | 2016.12.06 |