Fix tmux config not getting symlinked properly

This commit is contained in:
Johanna Dorothea Reichmann 2019-04-17 00:07:42 +02:00
parent 19d82c2f5e
commit 7bfeddabf6
Signed by: transcaffeine
GPG Key ID: 03624C433676E465

View File

@ -8,14 +8,14 @@ elif [[ $(command -v pacman) == 0 ]]; then
sudo pacman -S tmux git gnupg openssh sudo pacman -S tmux git gnupg openssh
fi fi
HERE=$(pwd)
# Set up tmux # Set up tmux
ln -s ./tmux/tmux.conf ~/.tmux.conf ln -s $HERE/tmux/tmux.conf ~/.tmux.conf
# Get the tmux-plugin-manager # Get the tmux-plugin-manager
mkdir -p ~/.tmux/plugins mkdir -p ~/.tmux/plugins
git clone https://github.com/tmux-plugins/tpm.git ~/.tmux/plugins/tpm git clone https://github.com/tmux-plugins/tpm.git ~/.tmux/plugins/tpm
HERE=$(pwd)
# Set up redshift # Set up redshift
mkdir -p ~/.config/redshift mkdir -p ~/.config/redshift
mkdir -p ~/.config/autostart mkdir -p ~/.config/autostart