tmux

HGW XX/7·2020년 12월 21일
0

tips

목록 보기
4/9
brew install tmux
.zshrc의 plugin에 추가
plugins=(
  ...
  tmux
)
cd ~/
git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
cp .tmux/.tmux.conf.local .
# increase history size
set -g history-limit 10000

# start with mouse mode enabled
set -g mouse on

# force Vi mode
# really you should export VISUAL or EDITOR environment variable, see manual
set -g status-keys vi
set -g mode-keys vi
Cb c
Cb " , cb %
Cb 0,1,2,3 
Cb d
tmux ls
tmux a

0개의 댓글