14 lines
368 B
Bash
Executable file
14 lines
368 B
Bash
Executable file
# setup tmux
|
|
|
|
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
|
|
|
|
cat <<EOF >$HOME/.tmux.conf
|
|
set-option -g mouse on
|
|
setw -g alternate-screen on
|
|
set -ga terminal-overrides ",*256col*:Tc"
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
set -g @plugin 'tmux-plugins/tmux-pain-control'
|
|
run -b '~/.tmux/plugins/tpm/tpm'
|
|
EOF
|