TechNOTE

Iterm2 환경설정 본문

coding

Iterm2 환경설정

JU1234 2023. 2. 28. 11:53
ZSH_THEME="agnoster"

맨날 맥북 옮길 때마다 재설정하기 귀찮아서 써 놓는 루틴쓰 .. 

1. 일단 iterm 2 설치 

2. Oh my zsh 설치 

https://ohmyz.sh/

 

Oh My Zsh - a delightful & open source framework for Zsh

Oh My Zsh is a delightful, open source, community-driven framework for managing your Zsh configuration. It comes bundled with several helpful functions, helpers, plugins, themes, and a few things that make you shout... OH MY ZSH!

ohmyz.sh

 

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
sh -c "$(wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"

두 커맨드 중 편한 걸 사용하면 됨 

3. 테마 바꾸기 

vi ~/.zshrc

파일 열고 

ZSH_THEME="agnoster"

로 바꾼다 ㅎㅎ 

근데 그러면 터미널이 깨짐 ㅜㅜ 폰트 문제임 

https://github.com/lxbrtsch/Menlo-for-Powerline

 

다음 깃헙에서 Menlo for Powerline 설치하고 
Iterm2 -> Preference -> Text  가서 폰트 바꿔준다! 

그럼 이렇게 바뀜 

4.유저네임 제거 

~/.zshrc 열고 

prompt_context() { }

추가! 

5. syntax highlight 

brew install zsh-syntax-highlighting

로 모듈 깔고 ~/.zshrc  수정하라는대로 수정 

6.  자동완성 

git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

설치 후 plugin에 zsh-autosuggestions 추가 

반응형
Comments