setup/scripts/tmux.sh

12 lines
239 B
Bash
Raw Permalink Normal View History

2023-08-29 20:52:02 +02:00
#! /bin/bash
#
#
configure_tmux() {
git clone https://github.com/tmux-plugins/tpm "$HOME/.tmux/plugins/tpm"
bash "$HOME/.tmux/plugins/tpm/scripts/install_plugins.sh"
}
ask "configure tmux? (y/n)"
[ "$RESP" != "n" ] && configure_tmux