[mac] 맥용 ssh client Iterm2 설치 (+ oh-my-zsh) 본문

프로그래밍/mac

[mac] 맥용 ssh client Iterm2 설치 (+ oh-my-zsh)

디유비 2020. 8. 29. 13:27

 

 

 

Downloads - iTerm2 - Mac OS Terminal Replacement

iTerm2 by George Nachman. Website by Matthew Freeman, George Nachman, and James A. Rosen. Website updated and optimized by HexBrain

www.iterm2.com

이거 깔면 선택한 거 바로 복사 가능하다. 

이거 정말 개꿀 기능이다.(는 사실.. 다른 윈도우 터미널이나 리눅스에 익숙한 사람에게..) 

마우스로 복사라니.. 소름 돋는다.

 

나는 stable release 깔았다. 안정적인게 좋자낭

 

그리고 여기다가 oh-my-zsh 깔면 더 이쁘다. 깔아보자

터미널을 연다.

 

brew install zsh

아직 brew를 설치하지 않았다면 -> https://dubuholic.tistory.com/136

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

디폴트 쉘이 bash 였는데 zsh 사용할거냐고 물어서  Y 눌러줬다.

비번 입력하란다.

설치 완료!

 

여기서 끝나면 아쉽다.

 

프롬프트를 아름답게 바꿔 보자.

https://github.com/ohmyzsh/ohmyzsh/wiki/Themes여기서 마음에 드는 테마를 선택한다.

vi ~/.zshrc를 열어서 

ZSH_THEME를 원하는 테마로 수정한다. 

나는 wedisagree로 적용해 보았다.

esc -> :wq ->enter 로 저장하고 나온 후

source ~/.zshrc로 변경사항을 적용해준다.

그러면 이렇게 wedisagree 테마가 적용된 프롬프트가 나온다!

 

+

 

autosuggestion이라는 플러그인을 설치하면 내가 이전에 작성했던 것을 히스토리를 찾지 않아도 보여준다.

 

zsh-users/zsh-autosuggestions

Fish-like autosuggestions for zsh. Contribute to zsh-users/zsh-autosuggestions development by creating an account on GitHub.

github.com

이렇게 git 만 쳐도 이전에 내가 했던 유사한 명령어를 보여준다. Good

Comments