tmux install

apt-get update  
apt-get install -y sudo  
apt-get install -y tmux

tmux command

session 생성

tmux new -s new_session

session 조회

tmux ls

session 접속

$ tmux attach -t new_session

패널

  • 가로로 나누기 Ctrl + b, "

  • 세로로 나누기 Ctrl + b, %

  • 패널 이동하기 Ctrl + b, 방향키

  • 패널 삭제하기 Ctrl + b, x

윈도우

  • 윈도우 생성 Ctrl + b, c

  • 윈도우 선택 Ctrl + b, 숫자키

  • 윈도우 삭제 Ctrl + b, x

iTerm2 install

brew install iterm2

iTerm font 변경하기

font 설치

iTerm font 적용

  • command + ,
  • Profiles -> Text -> Font -> Fira Code
  • ligatures font 체크

Status bar 추가하기

  • command + ,
  • Profiles -> Session -> Status bar enabled 체크
  • Configure Status Bar에서 원하는 component 드래그해서 배치

Color preset 변경하기

  • command + ,
  • Profiles -> Colors -> Color Presets...
  • Pastel (Dark Background) 클릭

'Programming > MAC' 카테고리의 다른 글

MAC 초기설정 - brew 설치  (0) 2023.05.09

terminal 실행

  • command + space
  • terminal 검색 실행

macOS 용 패키지 관리자 설치 - brew

/bin/bash -c "$(curl -fsSL [https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"](https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)")

path 추가하기

vi ~/.zshrc
# ~/.zshrc
export PATH=$PATH:/opt/homebrew/bin
source ~/.zshrc

'Programming > MAC' 카테고리의 다른 글

MAC 터미널 초기설정 - iTerm2 설치  (0) 2023.05.09

+ Recent posts