DEV Community

Youngjoon Won
Youngjoon Won

Posted on

tmux config

tee -a ~/.tmux.conf <<EOF

setw -g mode-keys vi
set -g prefix C-a                                                                                                                 
unbind-key C-b
bind-key C-a send-prefix
EOF
Enter fullscreen mode Exit fullscreen mode

in case of 'server version is too old for client' (after upgrade)

sudo kill -9 $(pgrep -f tmux)
Enter fullscreen mode Exit fullscreen mode

Top comments (0)