1
1
Fork 0
dotfiles/bin/install_plugins
sharpshark28 b43a98f3cc Squashed 'tpm/' content from commit 0ea31ae
git-subtree-dir: tpm
git-subtree-split: 0ea31ae2d624413719e97dc7e138ed6cf749c7d2
2017-01-21 16:49:30 -06:00

14 lines
393 B
Bash
Executable file

#!/usr/bin/env bash
# Script intended for use via the command line.
#
# `.tmux.conf` needs to be set for TPM. Tmux has to be installed on the system,
# but does not need to be started in order to run this script.
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
SCRIPTS_DIR="$CURRENT_DIR/../scripts"
main() {
"$SCRIPTS_DIR/install_plugins.sh" # has correct exit code
}
main