setup/scripts/tmux.sh
2023-08-29 20:52:02 +02:00

11 lines
239 B
Bash

#! /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