machine-setup/init-tmux.sh
2020-11-05 00:27:14 +01:00

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