diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-09-30 16:28:03 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2014-09-30 16:28:03 +0200 |
commit | 35bb36340a2955b69188422290223169b46e44b0 (patch) | |
tree | b42395f044821efa9ce03a926e2620d99ad03477 | |
parent | 2303ee70f02a8858ae5b1e9ef403dcdb3b1e76d9 (diff) | |
download | bin-35bb36340a2955b69188422290223169b46e44b0.tar.gz bin-35bb36340a2955b69188422290223169b46e44b0.tar.xz |
init_new_user.sh: fix wrong filename for tmux config
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | init_new_user.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init_new_user.sh b/init_new_user.sh index bffdaba..42420c8 100755 --- a/init_new_user.sh +++ b/init_new_user.sh @@ -25,7 +25,7 @@ clone_repo dotfiles git/dotfiles mkdir -p .config/htop -for i in .zshrc .vimrc .screenrc .screenrc-2 .zprofile .config/htop/htoprc .dircolors .vim .gitconfig .gitignore .bashrc .zshenv .tmuxrc; do +for i in .zshrc .vimrc .screenrc .screenrc-2 .zprofile .config/htop/htoprc .dircolors .vim .gitconfig .gitignore .bashrc .zshenv .tmux.conf; do ln -sf git/dotfiles/$i $i done |