Setting

맥(MAC) 터미널 꾸미기⭐️⭐️

우부랑 2024. 2. 28. 00:20

M3를 새로 샀으니 터미널도 꾸며보자 😆


(참고) Homebrew 부터 설치

 

M3 Git 설치 (MAC 깃 설치)

HomeBrew 설치 https://brew.sh/ Homebrew The Missing Package Manager for macOS (or Linux). brew.sh terminal을 킨다 . [finder(⌘cmd + space) -> terminal] 링크에 있는 명령어 복붙한다. 맥 password 를 입력한다. Warning: /opt/homebrew/bin

oovoo-v.tistory.com

 

터미널에서 iterm2, zsh, ohmyzsh  설치

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

 

폰트 설치 (D2Coding) https://github.com/Homebrew/homebrew-cask-fonts/tree/master/Casks

brew tap homebrew/cask-fonts
brew install font-d2coding

 

iTerm Preferences  [command⌘ + ,] 

1. 상태바 추가 

- Profiles > Session > Status bar enabled ☑︎ > Configure Status Bar > 원하는 상태 바 추가

- Appearance > Status bar location > 상태 바 위치 지정

2. 폰트 적용

- Profiles > Text > Font > 원하는 폰트로 변경

3. 컬러 테마 적용

- https://iterm2colorschemes.com/ > 원하는 테마 선택 > command⌘ + s > 저장된 파일에서 .txt 확장자 제거

- Profiles > Colors > Color Presets... > 원하는 테마 import 후 적용 (seoulbones_dark)

4. 테마 적용

- Appearance > General > Theme > Minimal 로 변경

5. 타이틀 없애기

- Profiles > Window > Custom window title, Custom tab title > 빈값으로 설정

 

oh my zsh Custom

brew install zsh-syntax-highlighting
brew install zsh-autosuggestions
vi ~/.zshrc
  • i 입력 후 아래 내용 수정
  • ZSH_THEME="robbyrussell" ➜ ZSH_THEME="agnoster" 로 변경 ( git branch 표시)
  • 파일 최하단에 다음 코드 추가 ( syntax-highlighting , autosuggestion , 이름 변경)
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh
prompt_context() {
  prompt_segment black default "{Name + Emoji} "
}
  • esc :wq 로 저장
source ~/.zshrc

 

적용완료~! 흐리멍텅 깔끔해서 보기 편해졌다!

 - 끝-