728x90
iTerm2 zsh 테마(powerlevel10k) 설정하기
iTerm2 설치
공식 홈페이지 : https://iterm2.com/
또는 homebrew 명령으로 설치
brew install --cask iterm2
Oh My Zsh 설치
공식 홈페이지 : https://ohmyz.sh/
curl을 통해 oh-my-zsh 설치
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
wget을 통해 oh-my-zsh 설치
sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
Solarized 설치
공식 홈페이지 : https://ethanschoonover.com/solarized/
mkdir $ZSH_CUSTOM/itermcolors
wget https://github.com/altercation/solarized/blob/master/iterm2-colors-solarized/Solarized%20Dark.itermcolors -O $ZSH_CUSTOM/itermcolors/Solarized_Dark-Patched.itermcolors
iTerm2 > Preferences... > Profiles > Profile Name:Default > Colors > Color Presets... > Import... > Solarized Dark
zsh 테마 설정
powerlevel10k 테마 적용
powerlevel10k 다운로드
git clone https://github.com/romkatv/powerlevel10k.git $ZSH/themes/powerlevel10k
powerlevel10k 적용
vim .zshrc
...
ZSH_THEME="powerlevel10k/powerlevel10k"
...
728x90
'기타' 카테고리의 다른 글
[기타] mac(macOS)에 stormssh 설치 및 설정하기 (0) | 2022.03.05 |
---|---|
[기타] Mac에서 스크린샷(화면캡쳐) 찍기 (0) | 2022.02.23 |
HPE ProLiant Server End of Service Life(EOSL) and End of Sale(EOS) (0) | 2022.01.06 |
[Mac] R3 인증서 만료됨 (0) | 2021.12.27 |
[기타] 스칼라(Scala) 프로그래밍 언어 (0) | 2021.12.26 |