os/MAC

Mac zsh

C/H 2020. 1. 28. 12:57

Mac zsh

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 폰트 변경

  1. command + , 설정 화면을 오픈한다.
  2. Profiles > Text 탭 > Font 섹션에서 Change Font에서 Inconsolata..., Meslo LG ... 폰트를 선택한다.
  3. iTerm2, Terminal을 다시 시작한다.
  4. 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