From 0c13e4bf471850f49915c7fb346e4c1e9dae7349 Mon Sep 17 00:00:00 2001 From: ray Date: Thu, 3 Sep 2020 16:24:41 +0100 Subject: [PATCH] fix symlink destinations --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 0ec37b9..ca42491 100755 --- a/install.sh +++ b/install.sh @@ -8,5 +8,5 @@ if [ -e "$HOME/.tmux.conf" ] ; then mv "$HOME/.tmux.conf" "$HOME/.tmux.conf-original" fi -ln -s "$HOME/.config/tmux" .tmux -ln -s "$HOME/.config/tmux/tmux.conf" .tmux.conf +ln -s "$HOME/.config/tmux" "$HOME/.tmux" +ln -s "$HOME/.config/tmux/tmux.conf" "$HOME/.tmux.conf"