CS/Environment
[TMUX] tmux.conf 적용
리르.
2017. 6. 12. 21:03
tmux에서 기존의 ctrl + b 대신 다른 hot key 를 쓰고자 하는 경우에는,
~/.tmux.conf 파일을 수정해야 한다.
가령, ctrl+b 대신 ctrl+a 로 바꾸고자 하는 경우,
set -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
를 .tmux.conf 파일에 작성한다.
그리고 shell에서
tmux source-file ~/.tmux.conf
command를 실행한다.
단축키는 아래 링크 참조.