Make tmux & tpm XDG compliant.

This commit is contained in:
Marty Oehme 2019-02-25 00:38:18 +01:00
parent b3b6d91f33
commit 2da738f1a8
4 changed files with 13 additions and 5 deletions

View file

@ -1,13 +1,20 @@
# Clone tmux plugin manager if not existing
if [[ -z "$TPM_PARENT_DIR" ]]; then
TPM_PARENT_DIR=$HOME
TPM_PARENT_DIR=${XDG_CONFIG_DIR:-$HOME/.config}/tmux
fi
if [[ ! -f $TPM_PARENT_DIR/.tmux/plugins/tpm/tpm ]]; then
if [[ ! -f $TPM_PARENT_DIR/plugins/tpm/tpm ]]; then
if [[ ! -d "$TPM_PARENT_DIR" ]]; then
mkdir -p "$TPM_PARENT_DIR"
fi
pushd $TPM_PARENT_DIR
git clone https://github.com/tmux-plugins/tpm ./.tmux/plugins/tpm
git clone https://github.com/tmux-plugins/tpm plugins/tpm
popd
fi
export TMUX_PLUGIN_MANAGER_PATH=$TPM_PARENT_DIR/plugins
alias tmux="tmux -f ${TPM_PARENT_DIR}/tmux.conf"
unset TPM_PARENT_DIR
unset TPM_SUB_DIR