iTerm2 제대로 활용하기

Post on Oct 04, 2019 by atom

iTerm2 제대로 활용하기


1. 검색 기능

1.1 터미널에서 검색

  • Commnad + F
  • 단순히 열려 있는 창에서 검색이 필요할 경우 사용합니다.

1.2 검색 결과에서 탐색 방향 <- ->

  • Command + g
  • 열려 있는 검색 결과에서 위아래로 이동을 할때 단축키로 활용할 수 있습니다.

1.3 열려 있는 모든 iTerm2에서 검색하기

  • Command + option + e
  • iTerm2를 분할하여 사용할 때 모든 열려 있는 탭에서 검색을 할 수 있다.

2. 탭 기능

2.1 새 창 열기

  • Command + n
  • 새창으로 iTerm을 하나 더 띄운다.

2.2 창 이동

  • Command + 번호
  • 열려 있는 창의 번호로 바로 이동한다.

2.3 새 탭 열기

  • Command + t
  • 현재 열려 있는 창에 새 탭을 띄운다

2.4 탭 이동

  • Command + 번호, Command + 방향키
  • 열려있는 탭의 번호로 이동한다.

2.5 탭 분할

  • Command + d -> 세로분할
  • Command + shift +d -> 가로분할

2.6 탭 투명

  • Command + i 를 통해 Preference
  • window 항목에서 Transparency로 설정
  • Command + u 로 투명도 on/off

2.7 탭 닫기

  • Command + w

3. 테마 적용하기

3.1 oh-my-zsh 설치

만약 zsh 가 설치되어 있지 않다면 아래 명령어로 먼저 설치합니다.

brew install zsh    # zsh 다운로드

이제 zsh를 기본 쉘로 바꿉니다

$ which zsh
/bin/zsh              # 현재 쉘을 zsh로 변경
$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"  # oh my zsh 다운로드

3.2 oh-my-zsh 플러그인 설치

3.2.1 autojump 설치

brew install autojump
echo "plugins=(autojump)" >> ${ZDOTDIR:-$HOME}/.zshrc # bash에 설정

3.2.2 autosuggestions 설치

brew install zsh-autosuggestions
echo "source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc

3.2.3 syntax highlighter 설치

cd ~/.oh-my-zsh/custom/plugins
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
echo "source ${(q-)PWD}/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc

3.2.4 설정 값 적용

source ~/.zshrc