-
[etc] Mac M1 iTerm2 & homebrew & oh-my-zsh 설치STUDY/ETC 2022. 3. 16. 23:39
1. iTerm2 설치
2. homebrew 설치
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
성공 후 next steps 따라 치면 됨
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/[본인]/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"설치 후
brew --version
또는
which brew해보면 제대로 깔렸는지 확인 가능
혹시 재설치를 해야한다면
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
아래 같이 뜨면 밑에 링크 참조
==> Homebrew uninstalled!
The following possible Homebrew files were not deleted:
/opt/homebrew/SECURITY.md
/opt/homebrew/etc/
/opt/homebrew/share/
/opt/homebrew/var/
You may wish to remove them yourself.3. zsh & oh-my-zsh 설치
brew install zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
4. iterm2 theme 변경
여기에서 마음에 드는 theme 다운로드
https://iterm2colorschemes.com/
Preferences > Profiels > Colors 탭 > import > 다운 받은 테마 선택
Color Presets 다시 눌러보면 다운 받은 테마 들어가 있음 선택 하면 끝
5. zsh theme 변경
디폴트는 robbyrussell로 설정되어 있고 바꿔봄
찾아보니깐 agnoster 테마를 많이 쓰는 듯 하여
https://github.com/ohmyzsh/ohmyzsh/wiki/themes
파일 수정
ZSH_THEME 원하는 테마로 변경
vi ~./zshrc
변경 후
source ~./zshrc
완료 후 아마 깨짐 현상이 있을 것이다 (+ 한글 깨짐)
https://github.com/naver/d2codingfont
폰트 다운 받고
Preferences > Profiles > Text 가서
Font 적용 하고 Unicode normalization from > NFC로 변경하면 끝
'STUDY > ETC' 카테고리의 다른 글
[AWS] AWS Free tier 인스턴스 삭제하기 (0) 2023.02.19 Docker DB 컨테이너 생성 및 인텔리제이로 DB 접속 (0) 2022.05.28 [AWS] AWS Free tier 계정 생성 및 인스턴스 생성하기 (0) 2022.03.15 [GIT] Support for password authentication was removed on... (0) 2021.08.14 [GIT] MAC 업데이트 후 git error (xcrun: error: ... ) (0) 2021.02.11