diff --git a/scripts/tmux.sh b/scripts/tmux.sh new file mode 100644 index 0000000..880d9ba --- /dev/null +++ b/scripts/tmux.sh @@ -0,0 +1,11 @@ +#! /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